The Yaf_Config_Simple class

(Yaf >=1.0.0)

Wstęp

Krótki opis klasy

Yaf_Config_Simple extends Yaf_Config_Abstract implements Iterator , ArrayAccess , Countable {
/* Właściwości */
protected $_readonly ;
/* Metody */
public __construct ( array $configs [, bool $readonly = false ] )
public count ( void ) : void
public current ( void ) : void
public __get ([ string $name ] ) : void
public __isset ( string $name ) : void
public key ( void ) : void
public next ( void ) : void
public offsetExists ( string $name ) : void
public offsetGet ( string $name ) : void
public offsetSet ( string $name , string $value ) : void
public offsetUnset ( string $name ) : void
public readonly ( void ) : void
public rewind ( void ) : void
public __set ( string $name , string $value ) : void
public toArray ( void ) : array
public valid ( void ) : void
/* Metody dziedziczone */
abstract public Yaf_Config_Abstract::get ( string $name , mixed $value ) : mixed
abstract public Yaf_Config_Abstract::readonly ( void ) : bool
abstract public Yaf_Config_Abstract::set ( void ) : Yaf_Config_Abstract
abstract public Yaf_Config_Abstract::toArray ( void ) : array
}

Właściwości

_config

_readonly

Spis treści

add a note add a note

User Contributed Notes 1 note

up
0
msn_and_i at hotmail dot com
8 years ago
The Yaf_Config_Simple construct method parameters may be wrong documenting,  actually first parameter shoud be array and second is string indicating if readonly.
To Top