Add Model\Contact::select method

This commit is contained in:
Hypolite Petovan 2019-04-27 22:21:02 -04:00
parent 9f4fb4906a
commit 71546705f8
2 changed files with 15 additions and 3 deletions

View File

@ -110,6 +110,20 @@ class Contact extends BaseObject
* @} * @}
*/ */
/**
* @param array $fields Array of selected fields, empty for all
* @param array $condition Array of fields for condition
* @param array $params Array of several parameters
* @return array
* @throws \Exception
*/
public static function select(array $fields = [], array $condition = [], array $params = [])
{
$statement = DBA::select('contact', $fields, $condition, $params);
return DBA::toArray($statement);
}
/** /**
* @param integer $id * @param integer $id
* @return array|boolean Contact record if it exists, false otherwise * @return array|boolean Contact record if it exists, false otherwise

View File

@ -52,9 +52,7 @@ class Contact extends BaseAdminModule
$pager = new Pager($a->query_string, 30); $pager = new Pager($a->query_string, 30);
$statement = DBA::select('contact', [], $condition, ['limit' => [$pager->getStart(), $pager->getItemsPerPage()]]); $contacts = Model\Contact::select([], $condition, ['limit' => [$pager->getStart(), $pager->getItemsPerPage()]]);
$contacts = DBA::toArray($statement);
$t = Renderer::getMarkupTemplate('admin/blocklist/contact.tpl'); $t = Renderer::getMarkupTemplate('admin/blocklist/contact.tpl');
$o = Renderer::replaceMacros($t, [ $o = Renderer::replaceMacros($t, [