PHP Class Horde_Registry_Api, horde

Copyright 2009-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])
Show file Open project: horde/horde Class Usage Examples

Protected Properties

Property Type Description
$_disabled array The list of disabled API calls.
$_links array Links.
$_methods array Cached list of methods.
$_noPerms array The listing of API calls that do not require permissions checking.

Public Methods

Method Description
disabled ( ) : array List of disabled API methods.
links ( ) : array List of application links.
methods ( ) : array Return the list of active API methods.
noPerms ( ) : array List of API methods that don't require permissions.

Method Details

disabled() public method

An application's implementation is responsible for changing/resetting application scope if it is needed within the method (e.g. to use application's prefs).
public disabled ( ) : array
return array List of disabled API methods.

methods() final public method

Return the list of active API methods.
final public methods ( ) : array
return array List of active API methods.

noPerms() public method

An application's implementation is responsible for changing/resetting application scope if it is needed within the method (e.g. to use application's prefs).
public noPerms ( ) : array
return array List of API methods that don't require permissions.

Property Details

$_disabled protected property

The list of disabled API calls.
protected array $_disabled
return array

$_methods protected property

Cached list of methods.
protected array $_methods
return array

$_noPerms protected property

The listing of API calls that do not require permissions checking.
protected array $_noPerms
return array