mirror of
https://github.com/RaspbianFrance/raspisms.git
synced 2025-04-20 16:37:48 +02:00
Rename a few classes, fix bugs, fix syntax
This commit is contained in:
parent
7cb963b8cf
commit
bda1c7ddfd
18 changed files with 106 additions and 37 deletions
|
@ -64,16 +64,17 @@ namespace models;
|
|||
}
|
||||
|
||||
/**
|
||||
* Get scheduleds message not in progress and before a date
|
||||
* Get scheduleds message not in progress and before a date.
|
||||
*
|
||||
* @param string $date : Limit date
|
||||
*
|
||||
* @return array
|
||||
*/
|
||||
public function get_scheduleds_not_in_progress_before ($date)
|
||||
public function get_scheduleds_not_in_progress_before($date)
|
||||
{
|
||||
return $this->_select('scheduleds', ['<=at' => $date, 'progress' => false]);
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Cette fonction retourne les messages programmés avant une date et pour un numéro.
|
||||
*
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue