Exemplo n.º 1
0
 function _renderBlock($output)
 {
     $base_list = $this->_renderer->table($this->render_column_headers() . $output, array('class' => 'system', 'id' => $this->list_id));
     if ($this->_suppress_form) {
         return parent::_renderBlock($base_list);
     }
     return parent::_renderBlock($this->_renderer->form($this->render_toolbar() . $base_list . $this->render_toolbar(), array('name' => $this->list_id, 'action' => AMP_url_update($_SERVER['REQUEST_URI']), 'method' => 'POST')));
 }