freenetis-github/application/models/phone_connection.php @ b8a40ec0
8baed187 | Michal Kliment | <?php defined('SYSPATH') or die('No direct script access.');
|
|
/*
|
|||
* This file is part of open source system FreenetIS
|
|||
* and it is released under GPLv3 licence.
|
|||
*
|
|||
* More info about licence can be found:
|
|||
* http://www.gnu.org/licenses/gpl-3.0.html
|
|||
*
|
|||
* More info about project can be found:
|
|||
* http://www.freenetis.org/
|
|||
*
|
|||
*/
|
|||
/**
|
|||
* Descriptions of Phone_connection_Model
|
|||
*
|
|||
* @author Ondřej Fibich
|
|||
* @package Model
|
|||
*
|
|||
* @property integer $id
|
|||
* @property integer $phone_invoice_user_id
|
|||
* @property Phone_invoice_user_Model $phone_invoice_user
|
|||
* @property datetime $datetime
|
|||
* @property double $price
|
|||
* @property integer $transefed
|
|||
* @property string $apn
|
|||
* @property integer $period
|
|||
* @property boolean $private
|
|||
*/
|
|||
class Phone_connection_Model extends ORM
|
|||
{
|
|||
protected $belongs_to = array('phone_invoice_user');
|
|||
/**
|
|||
* Gets connections from phone user
|
|||
*
|
|||
* @param integer $phone_invoice_user_id
|
|||
* @return Mysql_Result
|
|||
*/
|
|||
public function get_connections_from($phone_invoice_user_id)
|
|||
{
|
|||
return $this->db->query("
|
|||
SELECT phone_invoice_users.user_id, phone_connections.id,
|
|||
phone_connections.price, phone_connections.private,
|
|||
phone_connections.datetime, phone_connections.transfered,
|
|||
phone_connections.period, phone_connections.apn, phone_invoice_user_id
|
|||
FROM phone_connections
|
|||
LEFT JOIN phone_invoice_users ON phone_connections.phone_invoice_user_id = phone_invoice_users.id
|
|||
WHERE phone_connections.phone_invoice_user_id=?
|
|||
", $phone_invoice_user_id);
|
|||
}
|
|||
/**
|
|||
* Set private flag
|
|||
* @param integer $phone_invoice_user_id
|
|||
* @param array $private_ids Key id, value const 1
|
|||
*/
|
|||
public function set_connections_private($phone_invoice_user_id, $private_ids)
|
|||
{
|
|||
// reset all
|
|||
$this->db->query("
|
|||
UPDATE phone_connections
|
|||
SET private = '0'
|
|||
WHERE phone_invoice_user_id=?
|
|||
", array($phone_invoice_user_id));
|
|||
// set private
|
|||
if (is_array($private_ids) && count($private_ids))
|
|||
{
|
|||
$private_ids = array_keys($private_ids);
|
|||
// protection from SQL injection
|
|||
$private_ids = array_map('intval', $private_ids);
|
|||
$this->db->query("
|
|||
UPDATE phone_connections
|
|||
SET private = 1
|
|||
WHERE ID IN(" . implode(',', $private_ids) . ")
|
|||
");
|
|||
}
|
|||
}
|
|||
}
|