raspisms/models/Phone.php

34 lines
828 B
PHP
Raw Normal View History

2019-11-10 22:56:26 +01:00
<?php
/*
* This file is part of RaspiSMS.
*
* (c) Pierre-Lin Bonnemaison <plebwebsas@gmail.com>
*
* 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 Phone extends StandardModel
2019-11-10 22:56:26 +01:00
{
/**
* Return table name
* @return string
2019-11-10 22:56:26 +01:00
*/
protected function get_table_name() : string { return 'phone'; }
2019-11-12 19:19:55 +01:00
2019-11-12 05:16:59 +01:00
/**
* Return a phone by his number and user
* @param int $id_user : user id
* @param string $number : phone number
2019-11-12 05:16:59 +01:00
* @return array
*/
public function get_by_number_and_user (int $id_user, string $number)
2019-11-12 05:16:59 +01:00
{
return $this->_select_one('phone', ['number' => $number, 'id_user' => $id_user]);
}
2019-11-10 22:56:26 +01:00
}