CategoriesController::table PHP Method

table() public method

"Table" layout for categories. Mimics more traditional forum category layout.
public table ( string $Category = '', string $displayAs = '' )
$Category string
$displayAs string
    public function table($Category = '', $displayAs = '')
    {
        if ($this->SyndicationMethod == SYNDICATION_NONE) {
            $this->View = $displayAs === 'Flat' ? 'flat_table' : 'table';
        } else {
            $this->View = $displayAs === 'Flat' ? 'flat_all' : 'all';
        }
        $this->All($Category, $displayAs);
    }