BaseList::render PHP Method

render() public method

Render table.
public render ( ) : ArticleList
return ArticleList
    public function render()
    {
        $this->beforeRender();
        include $this->getPath('table.php');
        self::$renderTable = TRUE;
        echo '</div><!-- /#list-' . $this->id . ' -->';
        return $this;
    }