Exemplo n.º 1
0
 /**
  * Displays the HTML to the screen
  *
  * @since     3.3.2
  * @access   public
  */
 function display()
 {
     if (isset($this->_renderer) && method_exists($this->_renderer, 'display')) {
         // Display output directly from renderer.
         return $this->_renderer->display();
     } else {
         // Fallback on old default.
         return $this->toHtml();
     }
 }