Example #1
0
 function set_value($value)
 {
     parent::set_value($value);
     if (!empty($this->Owner)) {
         $this->Owner->notify_changed();
     }
 }
Example #2
0
 function __construct()
 {
     parent::__construct();
     $this->value = 'N';
 }
Example #3
0
 function get_db_context()
 {
     if ($this->is_empty()) {
         return $this->get_mysql_string_context($this->get_default_value());
     } else {
         return parent::get_db_context();
     }
 }
Example #4
0
 function __construct($value = null)
 {
     $this->is_now = false;
     parent::__construct($value);
 }
Example #5
0
 function __construct($value = null)
 {
     $this->set_length(UNIQUE_HASH_DEFAULT_LENGTH);
     parent::__construct($value);
 }
Example #6
0
 function __construct($value = null)
 {
     $this->CurrencyHelper = new CurrencyHelper();
     parent::__construct($value);
 }