Beispiel #1
0
 /**
  * Renders the given abstract container element and returns the html code
  * for the given container.
  * 
  * @access public
  * @param \Zepi\Web\UserInterface\Layout\AbstractContainer $container
  * @return string
  */
 public function render(AbstractContainer $container)
 {
     $template = $container->getTemplateKey();
     return $this->templatesManager->renderTemplate($template, array('layoutRenderer' => $this, 'container' => $container));
 }