Example #1
0
 /**
  * Copy properties from the given object. 
  * @param PROJECT_ENTRY $other
  * @access private
  */
 protected function copy_from($other)
 {
     parent::copy_from($other);
     $this->_options = clone $other->options();
 }
Example #2
0
 /**
  * Copy properties from the given object. 
  * @param ALBUM $other
  * @access private
  */
 protected function copy_from($other)
 {
     parent::copy_from($other);
     $this->first_day = clone $other->first_day;
     $this->last_day = clone $other->last_day;
 }