ComunicAPI/classes/components/searchUser.php

43 lines
1.1 KiB
PHP
Raw Normal View History

2017-05-27 07:41:52 +00:00
<?php
/**
* Search user controller
*
* @author Pierre HUBERT
*/
class searchUser {
/**
* Search for user in the database
*
* @param Sting $query The query to research on the database
* @param Integer $limit The number of results to return on the screen
* @return Array the result of the result
*/
2017-05-27 08:52:12 +00:00
public function search($query, $limit) : array{
//Prepare query string
$query = "%".str_replace(" ", "%", $query)."%";
//Prepare a request on the database
$tableName = "utilisateurs";
$conditions = "WHERE (nom LIKE ?) || (prenom LIKE ?) || (CONCAT(prenom, '%', nom) LIKE ?) || (CONCAT(nom, '%', prenom) LIKE ?) LIMIT ".$limit*1;
$datasCond = array($query, $query, $query, $query);
$fields = array("ID");
//Perform the request on the database
$results = CS::get()->db->select($tableName, $conditions, $datasCond, $fields);
//Prepare return
$return = array();
foreach($results as $value){
$return[] = $value["ID"];
}
//Return result
return $return;
2017-05-27 07:41:52 +00:00
}
}
//Register class
Components::register("searchUser", new searchUser());