addColumn('date', 'added', [ 'title' => 'Date/Time', 'format' => '%m/%d/%Y %I:%M %p ', 'orderBy' => 'added', ]); $this->addColumn('text', 'vendorName', ['title' => 'Vendor', 'orderBy' => 'vendorName']); $this->addColumn('text', 'adminName', ['title' => 'Person', 'orderBy' => 'adminName']); $this->addColumn('text', 'tribeTitle', ['title' => 'Tribe', 'orderBy' => 'tribeTitle']); $this->addColumn('enum', 'status', [ 'title' => 'Action', 'orderBy' => 'status', 'values' => [Entity::STATUS_BLACKLIST => 'Blacklist', Entity::STATUS_WHITELIST => 'Whitelist'], ]); $this->addColumn('comment', 'comment', [ 'title' => 'Comments', 'truncateLength' => $this->getConfig('listCommentLength'), ]); return $this; } }