39 lines
No EOL
1,015 B
PHP
39 lines
No EOL
1,015 B
PHP
<?php
|
|
|
|
/**
|
|
*
|
|
* @author Antonio de la Rosa <webmaster@web-t-sys.com>
|
|
* @file
|
|
* @package Core/ModelExtraMethods
|
|
*
|
|
*
|
|
*/
|
|
|
|
/**
|
|
* A useful method for Webmodel for load a row from a db model (table) using a where sql statement
|
|
*
|
|
* With this method you can load only a row specifyng the model id value using a where sql statement.
|
|
*
|
|
* @param Webmodel $class The instance of the class used
|
|
* @param string $where A where sql statement.
|
|
* @param array $arr_select An array where the values are the correspondent fields of the model
|
|
* @param boolean $raw_query If true, ForeignKeys will be ignored, if false, the return value will load the relationships specified.
|
|
* @param integer $assoc If 0, return only associatives keys, if 1, return numeric keys.
|
|
*
|
|
*/
|
|
|
|
|
|
function select_a_row_where_method_class($class, $arr_select=array(), $raw_query=0, $assoc=0)
|
|
{
|
|
|
|
settype($idrow, 'integer');
|
|
|
|
$query=$class->select($arr_select, $raw_query);
|
|
|
|
$class->set_limit('limit 1');
|
|
|
|
return $class->fetch_array($query, $assoc);
|
|
|
|
}
|
|
|
|
?>
|