addColumn('no', 'no'); $this->addColumn('date', 'date', ['orderBy' => 'date', 'format' => '%b %e, %Y']); $this->addColumn('text', 'title', ['orderBy' => 'title']); $this->addColumn( 'link_enum', 'enabled', ['title' => 'Show', 'orderBy' => 'enabled', 'values' => ['y' => 'Yes', 'n' => 'No']] ); $this->addColumn('options', 'options'); return $this; } }