123456789101112131415161718192021222324252627282930313233343536 |
- <?php
- class Book extends ActiveRecord\Model
- {
- static $belongs_to = array('author');
- static $has_one = array();
- static $use_custom_get_name_getter = false;
- public function upper_name()
- {
- return strtoupper($this->name);
- }
- public function name()
- {
- return strtolower($this->name);
- }
- public function get_name()
- {
- if (self::$use_custom_get_name_getter)
- return strtoupper($this->read_attribute('name'));
- else
- return $this->read_attribute('name');
- }
- public function get_upper_name()
- {
- return strtoupper($this->name);
- }
- public function get_lower_name()
- {
- return strtolower($this->name);
- }
- };
- ?>
|