예제 #1
0
파일: Result.php 프로젝트: ceko/concrete5-1
 public function getColumns()
 {
     if (!isset($this->columns)) {
         parent::getColumns();
         if ($this->getItemListObject()->isFulltextSearch()) {
             $baseColumn = new BaseColumn('cIndexScore', t('Score'), false, true, 'desc');
             $column = new Column($this, $baseColumn);
             array_unshift($this->columns, $column);
         }
     }
     return $this->columns;
 }