Наследование: extends lithium\template\view\Renderer
Пример #1
0
 /**
  * Will create a new renderer with a request, and pull a helper out of it.
  * @param  string $helper The name of the helper.
  * @return object         The generated helper.
  */
 public function create($helper)
 {
     $_context = new MockRenderer(array('request' => new Request(array())));
     $helper = $_context->helper($helper);
     return $helper;
 }