Рекурсивный акроним словосочетания «PHP: Hypertext Preprocessor»
Добро пожаловать на форум PHP программистов!
За последние 24 часа нас посетили 16347 программистов и 1649 роботов. Сейчас ищет 1551 программист ...
Translation2::getDecorator
Вернуться к: Translation2
Translation2::getDecorator
Translation2::getDecorator() – Return an instance of a decorator
Synopsis
require_once 'Translation2.php';
object Decorator& Translation2::getDecorator ( string $decorator , object [optional] 1 )
This method is used to get a decorator instance. A decorator can be seen as a filter, i.e. something that can change or handle the values of the objects/vars that pass through.
Parameter
- string $decorator
-
Name of the decorator
- object $obj [optional]
-
Object to decorate (the default object being $this)
Return value
returns object Reference of a Translation2_Decorator subclass
Note
This function can not be called statically.
Вернуться к: Translation2