mirror of
https://github.com/RaspbianFrance/raspisms.git
synced 2025-04-20 16:37:48 +02:00
Update methods names
This commit is contained in:
parent
37b2a93323
commit
1865072b73
26 changed files with 88 additions and 101 deletions
|
@ -32,10 +32,10 @@ namespace controllers\internals;
|
|||
*
|
||||
* @return array : La liste des sendedes
|
||||
*/
|
||||
public function get_list($nb_entry = false, $page = false)
|
||||
public function list($nb_entry = false, $page = false)
|
||||
{
|
||||
//Recupération des sendedes
|
||||
return $this->model_sended->get_list($nb_entry, $nb_entry * $page);
|
||||
return $this->model_sended->list($nb_entry, $nb_entry * $page);
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -45,10 +45,10 @@ namespace controllers\internals;
|
|||
*
|
||||
* @return array : La liste des sendedes
|
||||
*/
|
||||
public function get_by_ids($ids)
|
||||
public function gets($ids)
|
||||
{
|
||||
//Recupération des sendedes
|
||||
return $this->model_sended->get_by_ids($ids);
|
||||
return $this->model_sended->gets($ids);
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -86,7 +86,7 @@ namespace controllers\internals;
|
|||
*/
|
||||
public function delete($id)
|
||||
{
|
||||
return $this->model_sended->delete_by_id($id);
|
||||
return $this->model_sended->delete($id);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue