addColumn('no', 'no'); $this->addColumn('text', 'referrerMode'); $this->addColumn('text', 'added', ['orderBy' => 'added']); $this->addColumn( 'enum', 'isAjax', [ 'orderBy' => 'isAjax', 'values' => ['y' => 'Yes', 'n' => 'No'], ] ); $this->addColumn('text', 'request', ['orderBy' => 'request', 'truncateLength' => 500]); $this->addColumn('browser', 'id', ['title' => 'Browser Information']); $this->addColumn('options', 'options', ['actions' => 'delete']); return $this; } }