PHP Класс Operator_Driver_asterisksql, horde

The table structure can be created by the scripts/sql/operator_foo.sql script. Copyright 2008-2016 Horde LLC (http://www.horde.org/) See the enclosed file COPYING for license information (GPL). If you did not receive this file, see http://www.horde.org/licenses/gpl.
Автор: Your Name ([email protected])
Наследование: extends Operator_Driver
Показать файл Открыть проект

Защищенные свойства (Protected)

Свойство Тип Описание
$_connected boolean Boolean indicating whether or not we're connected to the SQL server.
$_db DB Handle for the current database connection.
$_params array Hash containing connection parameters.
$_write_db DB Handle for the current database connection, used for writing. Defaults to the same handle as $_db if a separate write database is not required.

Открытые методы

Метод Описание
__construct ( array $params = [] ) Constructs a new SQL storage object.
getAccountCodes ( )

Защищенные методы

Метод Описание
_connect ( ) : boolean Attempts to open a connection to the SQL server.
_disconnect ( ) : boolean Disconnects from the SQL server and cleans up the connection.
_getMonthlyCallStats ( $start, $end, $accountcode = null, $dcontext = null ) : array Get summary call statistics per-month for a given time range, account and destination.
_getRecords ( $start, $end, $accountcode = null, $dcontext = null, $rowstart, $rowlimit = null ) : array Get call detail records from the database

Описание методов

__construct() публичный Метод

Constructs a new SQL storage object.
public __construct ( array $params = [] )
$params array A hash containing connection parameters.

_connect() защищенный Метод

Attempts to open a connection to the SQL server.
protected _connect ( ) : boolean
Результат boolean True on success.

_disconnect() защищенный Метод

Disconnects from the SQL server and cleans up the connection.
protected _disconnect ( ) : boolean
Результат boolean True on success, false on failure.

_getMonthlyCallStats() защищенный Метод

Get summary call statistics per-month for a given time range, account and destination.
protected _getMonthlyCallStats ( $start, $end, $accountcode = null, $dcontext = null ) : array
Результат array Array of call statistics. The key of each element is the month name in date('Y-m') format and the value being an array of statistics for calls placed that month.

_getRecords() защищенный Метод

Get call detail records from the database
protected _getRecords ( $start, $end, $accountcode = null, $dcontext = null, $rowstart, $rowlimit = null ) : array
Результат array [0] contains summary statistics; [1] is an array of the actual call records.

getAccountCodes() публичный Метод

public getAccountCodes ( )

Описание свойств

$_connected защищенное свойство

Boolean indicating whether or not we're connected to the SQL server.
protected bool $_connected
Результат boolean

$_db защищенное свойство

Handle for the current database connection.
protected DB $_db
Результат DB

$_params защищенное свойство

Hash containing connection parameters.
protected array $_params
Результат array

$_write_db защищенное свойство

Handle for the current database connection, used for writing. Defaults to the same handle as $_db if a separate write database is not required.
protected DB $_write_db
Результат DB