PHP Class Horde_Core_Ajax_Application_Handler, horde

Copyright 2012-2016 Horde LLC (http://www.horde.org/) See the enclosed file COPYING for license information (LGPL). If you did not receive this file, see http://www.horde.org/licenses/lgpl21.
Author: Michael Slusarz ([email protected])
Mostrar archivo Open project: horde/horde Class Usage Examples

Protected Properties

Property Type Description
$_base Horde_Core_Ajax_Application The base AJAX application object.
$_external array outside of the Horde framework).
$_ignored array A list of public method names to ignore as actions.
$_readOnly array A list of actions that require read-only session access.

Public Methods

Method Description
__construct ( Horde_Core_Ajax_Application $base ) Constructor.
__get ( $name )
external ( string $action ) : boolean Is the action accessible externally?
has ( string $action ) : boolean Determines if the action exists in this handler.
readonly ( string $action ) : boolean Is the action marked read-only?

Method Details

__construct() public method

Constructor.
public __construct ( Horde_Core_Ajax_Application $base )
$base Horde_Core_Ajax_Application The base AJAX application object.

__get() final public method

final public __get ( $name )

external() final public method

Is the action accessible externally?
final public external ( string $action ) : boolean
$action string An AJAX action.
return boolean True if the action is acessible externally.

has() final public method

Determines if the action exists in this handler.
final public has ( string $action ) : boolean
$action string An AJAX action.
return boolean True if the action exists.

readonly() final public method

Is the action marked read-only?
final public readonly ( string $action ) : boolean
$action string An AJAX action.
return boolean True if the action is read-only.

Property Details

$_base protected_oe property

The base AJAX application object.
protected Horde_Core_Ajax_Application $_base
return Horde_Core_Ajax_Application

$_external protected_oe property

outside of the Horde framework).
protected array $_external
return array

$_ignored protected_oe property

A list of public method names to ignore as actions.
protected array $_ignored
return array

$_readOnly protected_oe property

A list of actions that require read-only session access.
protected array $_readOnly
return array