示例#1
0
 /**
  * Constructor.
  */
 public function __construct($mixed = null)
 {
     parent::__construct($mixed);
 }
示例#2
0
 /**
  * Loads author data from the object passed in
  */
 public function load($mixed)
 {
     parent::load($mixed);
     if (isset($this->name)) {
         $this->nameSet($this->name);
     }
 }
示例#3
0
 /**
  * Constructor.
  */
 public function __construct($mixed = null)
 {
     parent::__construct($mixed);
     $this->search_params = null;
 }
示例#4
0
 public function __construct($mixed = NULL)
 {
     $this->paper = 'no paper';
     $this->web_links = array();
     parent::__construct($mixed);
 }