addColumn('no', 'no'); $this->addColumn('date', 'date', ['orderBy' => 'date']); if (true === $this->getConfig('hasImage')) { $this->addColumn('image', 'image'); } $this->addColumn('item', 'item'); if (true === $this->getConfig('hasFeatured')) { $this->addColumn('link_enum', 'featured', ['orderBy' => 'featured']); } $this->addColumn('link_enum', 'enabled', ['title' => 'Show', 'orderBy' => 'enabled']); $this->addColumn('options', 'options'); return $this; } }