- Timestamp:
- 10/03/08 14:14:59 (2 years ago)
- Files:
-
- fActiveRecord.php (modified) (1 diff)
- fDatabase.php (modified) (1 diff)
- fDate.php (modified) (1 diff)
- fDirectory.php (modified) (1 diff)
- fEmail.php (modified) (1 diff)
- fFile.php (modified) (1 diff)
- fMoney.php (modified) (1 diff)
- fNumber.php (modified) (1 diff)
- fPrintableException.php (modified) (1 diff)
- fRecordSet.php (modified) (1 diff)
- fResult.php (modified) (1 diff)
- fSchema.php (modified) (1 diff)
- fTemplating.php (modified) (1 diff)
- fTime.php (modified) (1 diff)
- fTimestamp.php (modified) (1 diff)
- fUnbufferedResult.php (modified) (1 diff)
- fValidation.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
fActiveRecord.php
r265 r267 Hide Line Numbers 292 292 $this->related_records 293 293 ); 294 } 295 296 297 /** 298 * All requests that hit this method should be requests for callbacks 299 * 300 * @param string $method The method to create a callback for 301 * @return callback The callback for the method requested 302 */ 303 public function __get($method) 304 { 305 return array($this, $method); 294 306 } 295 307 fDatabase.php
r262 r267 Hide Line Numbers 236 236 // PDO objects close their own connections when destroyed 237 237 } 238 } 239 240 241 /** 242 * All requests that hit this method should be requests for callbacks 243 * 244 * @param string $method The method to create a callback for 245 * @return callback The callback for the method requested 246 */ 247 public function __get($method) 248 { 249 return array($this, $method); 238 250 } 239 251 fDate.php
r257 r267 Hide Line Numbers 57 57 58 58 $this->date = strtotime(date('Y-m-d 00:00:00', $timestamp)); 59 } 60 61 62 /** 63 * All requests that hit this method should be requests for callbacks 64 * 65 * @param string $method The method to create a callback for 66 * @return callback The callback for the method requested 67 */ 68 public function __get($method) 69 { 70 return array($this, $method); 59 71 } 60 72 fDirectory.php
r265 r267 Hide Line Numbers 156 156 $this->directory =& fFilesystem::hookFilenameMap($directory); 157 157 $this->exception =& fFilesystem::hookExceptionMap($directory); 158 } 159 160 161 /** 162 * All requests that hit this method should be requests for callbacks 163 * 164 * @param string $method The method to create a callback for 165 * @return callback The callback for the method requested 166 */ 167 public function __get($method) 168 { 169 return array($this, $method); 158 170 } 159 171 fEmail.php
r265 r267 Hide Line Numbers 261 261 */ 262 262 private $to_emails = array(); 263 264 265 /** 266 * All requests that hit this method should be requests for callbacks 267 * 268 * @param string $method The method to create a callback for 269 * @return callback The callback for the method requested 270 */ 271 public function __get($method) 272 { 273 return array($this, $method); 274 } 263 275 264 276 fFile.php
r265 r267 Hide Line Numbers 126 126 $this->file =& fFilesystem::hookFilenameMap($file); 127 127 $this->exception =& fFilesystem::hookExceptionMap($file); 128 } 129 130 131 /** 132 * All requests that hit this method should be requests for callbacks 133 * 134 * @param string $method The method to create a callback for 135 * @return callback The callback for the method requested 136 */ 137 public function __get($method) 138 { 139 return array($this, $method); 128 140 } 129 141 fMoney.php
r265 r267 Hide Line Numbers 255 255 256 256 $this->amount = new fNumber($amount, $precision); 257 } 258 259 260 /** 261 * All requests that hit this method should be requests for callbacks 262 * 263 * @param string $method The method to create a callback for 264 * @return callback The callback for the method requested 265 */ 266 public function __get($method) 267 { 268 return array($this, $method); 257 269 } 258 270 fNumber.php
r266 r267 Hide Line Numbers 890 890 891 891 /** 892 * All requests that hit this method should be requests for callbacks 893 * 894 * @param string $method The method to create a callback for 895 * @return callback The callback for the method requested 896 */ 897 public function __get($method) 898 { 899 return array($this, $method); 900 } 901 902 903 /** 892 904 * Converts the object to an string 893 905 * fPrintableException.php
r218 r267 Hide Line Numbers 15 15 abstract class fPrintableException extends Exception 16 16 { 17 /** 18 * All requests that hit this method should be requests for callbacks 19 * 20 * @param string $method The method to create a callback for 21 * @return callback The callback for the method requested 22 */ 23 public function __get($method) 24 { 25 return array($this, $method); 26 } 27 28 17 29 /** 18 30 * Gets the backtrace to currently called exception fRecordSet.php
r265 r267 Hide Line Numbers 330 330 $result_object->next(); 331 331 } 332 } 333 334 335 /** 336 * All requests that hit this method should be requests for callbacks 337 * 338 * @param string $method The method to create a callback for 339 * @return callback The callback for the method requested 340 */ 341 public function __get($method) 342 { 343 return array($this, $method); 332 344 } 333 345 fResult.php
r262 r267 Hide Line Numbers 164 164 // SQLite doesn't have a way to free a result 165 165 } 166 } 167 168 169 /** 170 * All requests that hit this method should be requests for callbacks 171 * 172 * @param string $method The method to create a callback for 173 * @return callback The callback for the method requested 174 */ 175 public function __get($method) 176 { 177 return array($this, $method); 166 178 } 167 179 fSchema.php
r214 r267 Hide Line Numbers 124 124 file_put_contents($this->cache_file, $contents); 125 125 } 126 } 127 128 129 /** 130 * All requests that hit this method should be requests for callbacks 131 * 132 * @param string $method The method to create a callback for 133 * @return callback The callback for the method requested 134 */ 135 public function __get($method) 136 { 137 return array($this, $method); 126 138 } 127 139 fTemplating.php
r214 r267 Hide Line Numbers 91 91 fCore::handleException($e); 92 92 } 93 } 94 95 96 /** 97 * All requests that hit this method should be requests for callbacks 98 * 99 * @param string $method The method to create a callback for 100 * @return callback The callback for the method requested 101 */ 102 public function __get($method) 103 { 104 return array($this, $method); 93 105 } 94 106 fTime.php
r257 r267 Hide Line Numbers 61 61 62 62 /** 63 * All requests that hit this method should be requests for callbacks 64 * 65 * @param string $method The method to create a callback for 66 * @return callback The callback for the method requested 67 */ 68 public function __get($method) 69 { 70 return array($this, $method); 71 } 72 73 74 /** 63 75 * Returns this time in 'H:i:s' format 64 76 * fTimestamp.php
r265 r267 Hide Line Numbers 751 751 752 752 /** 753 * All requests that hit this method should be requests for callbacks 754 * 755 * @param string $method The method to create a callback for 756 * @return callback The callback for the method requested 757 */ 758 public function __get($method) 759 { 760 return array($this, $method); 761 } 762 763 764 /** 753 765 * Returns this date/time 754 766 * fUnbufferedResult.php
r262 r267 Hide Line Numbers 144 144 $this->result->closeCursor(); 145 145 } 146 } 147 148 149 /** 150 * All requests that hit this method should be requests for callbacks 151 * 152 * @param string $method The method to create a callback for 153 * @return callback The callback for the method requested 154 */ 155 public function __get($method) 156 { 157 return array($this, $method); 146 158 } 147 159 fValidation.php
r219 r267 Hide Line Numbers 35 35 */ 36 36 private $required_fields = array(); 37 38 39 /** 40 * All requests that hit this method should be requests for callbacks 41 * 42 * @param string $method The method to create a callback for 43 * @return callback The callback for the method requested 44 */ 45 public function __get($method) 46 { 47 return array($this, $method); 48 } 37 49 38 50
