示例#1
0
文件: mango.php 项目: ryross/A1
 public function create($safe = TRUE)
 {
     $this->password = $this->hash($this->password);
     return parent::create($safe);
 }
示例#2
0
 public function create($options = array())
 {
     $this->values(array('status' => 'queued', 'created' => time(), 'try' => 0));
     return parent::create($options);
 }
示例#3
0
 public function create($safe = TRUE)
 {
     $this->car_type = $this->_car_type;
     return parent::create($safe);
 }
示例#4
0
文件: Mango.php 项目: wouterrr/a1
 public function create($options = array())
 {
     $this->password = $this->hash($this->password);
     return parent::create($options);
 }