DiscussionsController::table PHP Method

table() public method

"Table" layout for discussions. Mimics more traditional forum discussion layout.
public table ( integer $Page = '0' )
$Page integer Multiplied by PerPage option to determine offset.
    public function table($Page = '0')
    {
        if ($this->SyndicationMethod == SYNDICATION_NONE) {
            $this->View = 'table';
        }
        $this->Index($Page);
    }