add find_all function to Storage

pull/1315/head
Isaac Connor 2016-02-03 09:43:02 -05:00
parent 555904c588
commit 08858685c5
1 changed files with 9 additions and 0 deletions

View File

@ -36,5 +36,14 @@ class Storage {
#call_user_func_array( $this->{$fn}, $args);
}
}
public static function find_all() {
$storage_areas = array();
$result = dbQuery( 'SELECT * FROM Storage ORDER BY Name');
$results = $result->fetchALL(PDO::FETCH_CLASS | PDO::FETCH_PROPS_LATE, 'Storage' );
foreach ( $results as $row => $obj ) {
$storage_areas[] = $obj;
}
return $storage_areas;
}
}
?>