addColumn('no', 'no'); $this->addColumn( 'date', 'added', ['title' => 'Submitted', 'orderBy' => 'added', 'format' => '%m/%d/%Y %I:%M %p'] ); if ($this->getConfig('nameType') == 'split') { $this->addColumn('text', 'firstName', ['orderBy' => 'firstName']); $this->addColumn('text', 'lastName', ['orderBy' => 'lastName']); } else { $this->addColumn('text', 'fullName', ['title' => 'Name', 'orderBy' => 'fullName']); } $this->addColumn('text', 'email', ['title' => 'Email Address', 'orderBy' => 'email']); $this->addColumn( 'link_enum', 'subscribed', ['orderBy' => 'subscribed', 'values' => ['y' => 'Yes', 'n' => 'No']] ); $this->addColumn( 'options', 'options', [ 'actions' => [ 'view' => ['linkTitle' => 'View this Join Our Email List Submission'], 'delete' => ['linkTitle' => 'Delete this Join Our Email List Submission'], ], ] ); return $this; } }