PHP Класс Horde_Alarm_Sql, horde

The table structure can be created by the migration script.
Автор: Jan Schneider ([email protected])
Наследование: extends Horde_Alarm
Показать файл Открыть проект

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

Свойство Тип Описание
$_db Horde_Db_Adapter Handle for the current database connection.

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

Метод Описание
__construct ( array $params = [] ) Constructor.
initialize ( ) Initialization tasks.
internal ( string $id, string $user, array $internal ) Updates internal alarm properties, i.e. properties not determined by the application setting the alarm.

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

Метод Описание
_add ( array $alarm ) Adds an alarm hash to the backend.
_convertBinary ( string $column, mixed $value ) : string Converts results from TEXT columns to strings.
_delete ( string $id, string $user = null ) Deletes an alarm from the backend.
_dismiss ( string $id, string $user ) Dismisses an alarm.
_exists ( string $id, string $user, string $instanceid = null ) : boolean Returns whether an alarm with the given id exists already.
_fromDriver ( mixed $value ) : mixed Converts a value from the driver's charset.
_gc ( ) Garbage collects old alarms in the backend.
_get ( string $id, string $user ) : array Returns an alarm hash from the backend.
_getHash ( array $alarm )
_global ( ) : array Returns a list of all global alarms from the backend.
_isSnoozed ( string $id, string $user, Horde_Date $time ) : boolean Returns whether an alarm is snoozed.
_list ( string $user, Horde_Date $time ) : array Returns a list of alarms from the backend.
_snooze ( string $id, string $user, Horde_Date $snooze ) Delays (snoozes) an alarm for a certain period.
_toDriver ( mixed $value ) : mixed Converts a value to the driver's charset.
_update ( array $alarm, boolean $keepsnooze = false ) Updates an alarm hash in the backend.

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

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

Constructor.
public __construct ( array $params = [] )
$params array Configuration parameters:
'db' - (Horde_Db_Adapter) [REQUIRED] The DB instance.
'table' - (string) The name of the alarm table in 'database'.
          DEFAULT: 'horde_alarms'

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

Adds an alarm hash to the backend.
protected _add ( array $alarm )
$alarm array An alarm hash.

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

Converts results from TEXT columns to strings.
protected _convertBinary ( string $column, mixed $value ) : string
$column string A column name.
$value mixed A TEXT column value.
Результат string The column value as plain string.

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

Deletes an alarm from the backend.
protected _delete ( string $id, string $user = null )
$id string The alarm's unique id.
$user string The alarm's user. All users' alarms if null.

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

Dismisses an alarm.
protected _dismiss ( string $id, string $user )
$id string The alarm's unique id.
$user string The alarm's user

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

Returns whether an alarm with the given id exists already.
protected _exists ( string $id, string $user, string $instanceid = null ) : boolean
$id string The alarm's unique id.
$user string The alarm's user
$instanceid string An optional instanceid to match.
Результат boolean True if the specified alarm exists.

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

Converts a value from the driver's charset.
protected _fromDriver ( mixed $value ) : mixed
$value mixed Value to convert.
Результат mixed Converted value.

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

Garbage collects old alarms in the backend.
protected _gc ( )

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

Returns an alarm hash from the backend.
protected _get ( string $id, string $user ) : array
$id string The alarm's unique id.
$user string The alarm's user
Результат array An alarm hash.

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

protected _getHash ( array $alarm )
$alarm array

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

Returns a list of all global alarms from the backend.
protected _global ( ) : array
Результат array A list of alarm hashes.

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

Returns whether an alarm is snoozed.
protected _isSnoozed ( string $id, string $user, Horde_Date $time ) : boolean
$id string The alarm's unique id.
$user string The alarm's user
$time Horde_Date The time when the alarm may be snoozed.
Результат boolean True if the alarm is snoozed.

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

Returns a list of alarms from the backend.
protected _list ( string $user, Horde_Date $time ) : array
$user string Return alarms for this user, all users if null, or global alarms if empty.
$time Horde_Date The time when the alarms should be active.
Результат array A list of alarm hashes.

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

Delays (snoozes) an alarm for a certain period.
protected _snooze ( string $id, string $user, Horde_Date $snooze )
$id string The alarm's unique id.
$user string The alarm's user
$snooze Horde_Date The snooze time.

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

Converts a value to the driver's charset.
protected _toDriver ( mixed $value ) : mixed
$value mixed Value to convert.
Результат mixed Converted value.

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

Updates an alarm hash in the backend.
protected _update ( array $alarm, boolean $keepsnooze = false )
$alarm array An alarm hash.
$keepsnooze boolean Whether to keep the snooze value unchanged.

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

Initialization tasks.
public initialize ( )

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

Updates internal alarm properties, i.e. properties not determined by the application setting the alarm.
public internal ( string $id, string $user, array $internal )
$id string The alarm's unique id.
$user string The alarm's user
$internal array A hash with the internal data.

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

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

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