addColumn('no', 'no'); $this->addColumn( 'date', 'added', ['title' => 'Created', 'orderBy' => 'added', 'format' => '%m/%d/%Y %I:%M %p'] ); $this->addColumn('text', 'code', ['orderBy' => 'code', 'title' => 'Promo Code']); $this->addColumn( 'date', 'startDate', ['title' => 'Start Date', 'orderBy' => 'startDate', 'format' => '%m/%d/%Y'] ); $this->addColumn( 'date', 'endDate', ['title' => 'Exp. Date', 'orderBy' => 'endDate', 'format' => '%m/%d/%Y', 'emptyText' => '-'] ); $this->addColumn( 'text', 'usageCount', ['title' => 'Usage Count', 'orderBy' => 'usageCount'] ); $this->addColumn('html', 'description', ['title' => 'Description']); $this->addColumn('options', 'options'); return $this; } }