Seditio Source
Root |
./othercms/croogo-4.0.7/vendor/croogo/croogo/Core/src/Action/Admin/IndexAction.php
<?php

namespace Croogo\Core\Action\Admin;

use
Crud\Action\IndexAction as CrudIndexAction;

class
IndexAction extends CrudIndexAction
{
    protected function
_handle()
    {
       
parent::_handle();

       
$this->_controller()->set([
           
'displayFields' => $this->getConfig('displayFields'),
           
'searchFields' => $this->getConfig('searchFields'),
        ]);
    }
}