find_one() public method

As a shortcut, you may supply an ID as a parameter to this method. This will perform a primary key lookup on the table.
public find_one ( $id = null )
Esempio n. 1
0
 /**
  * Wrap Idiorm's find_one method to return
  * an instance of the class associated with
  * this wrapper instead of the raw ORM class.
  *
  * @param  null|integer $id
  * @return Model
  */
 public function find_one($id = null)
 {
     return $this->_create_model_instance(parent::find_one($id));
 }