LoginSignup
4
2

More than 5 years have passed since last update.

CakePHP Search Plugin導入

Posted at
app\Config\bootstrap.php
CakePlugin::load('Search');
app\Model\Model.php
public $actsAs = array('Search.Searchable');
public $filterArgs = array(
     'field1' => array(
        'type' => 'value',
        'field' => 'Model.field1'
    ),
);
app\Controller\XxxxxController.php
public $components = array('Search.Prg');
public $presetVars = true;

検索結果をPaginationする時

app\Controller\XxxxxController.php
public function search() {
    $this->Prg->commonProcess();

    $this->Paginator->settings = array(
        'conditions' => array(
            $this->Model->parseCriteria($this->passedArgs)
        )
    );
    $this->set('lists', $this->Paginator->paginate());
}

Paginationしない時

app\Controller\XxxxxController.php
public function search() {
    $this->Prg->commonProcess();

    if ($this->request->data) {
        // 検索結果の表示
        $passedArgs = $this->passedArgs;
    } else {
        // 検索しない時の表示
        $passedArgs = null;
    }
    $lists = $this->Model->find('all', $passedArgs);
    $this->set('lists', $lists);
}
4
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
4
2