Difference between revisions of "PHPLights/Documentation/liblights/LsStorageSecurityAspect"

From Linuxnetworks
Jump to: navigation, search
(update)
 
(No difference)

Latest revision as of 16:28, 6 October 2007

Synopsis

class LsStorageSecurityAspect
  implements LsStorageIface
{
  public function __construct( LsStorageIface $storage )
  public function del( $path )
  public function get( $path, $default = NULL, $regex = NULL )
  public function has( $path )
  public function set( $path, $value )
  public function setByRef( $path, &$value )

  protected function check( array &$values, $regex )
  protected function test( &$value, $result )
}

Description

Public functions

__construct()

public function __construct( LsStorageIface $storage )

del()

public function del( $path )

get()

public function get( $path, $default = NULL, $regex = NULL )

has()

public function has( $path )

set()

public function set( $path, $value )

setByRef()

public function setByRef( $path, &$value )

Protected functions

check()

protected function check( array &$values, $regex )

test()

protected function test( &$value, $result )



Back to Overview