raspisms/models/SmsStop.php

34 lines
850 B
PHP
Raw Normal View History

2019-10-29 14:57:13 +01:00
<?php
/*
2019-11-10 17:48:54 +01:00
* This file is part of RaspiSMS.
*
2019-11-10 17:48:54 +01:00
* (c) Pierre-Lin Bonnemaison <plebwebsas@gmail.com>
*
2019-11-10 17:48:54 +01:00
* This source file is subject to the GPL-3.0 license that is bundled
* with this source code in the file LICENSE.
*/
namespace models;
class SmsStop extends StandardModel
2019-10-29 14:57:13 +01:00
{
/**
* Return table name
* @return string
*/
protected function get_table_name() : string { return 'smsstop'; }
2019-10-29 14:57:13 +01:00
/**
* Return a smsstop by his number and user
* @param int $id_user : user id
* @param string $number : phone number
* @return array
2019-10-29 14:57:13 +01:00
*/
public function get_by_number_for_user (int $id_user, string $number)
2019-10-29 14:57:13 +01:00
{
return $this->_select_one($this->get_table_name(), ['number' => $number, 'id_user' => $id_user]);
2019-10-29 14:57:13 +01:00
}
}