where condition with pagination in cakephp code example
Example: cakephp pagination
// admin_index
$all_settings = array(
'contain' => array(
'CreditType' => array(
'CreditTypeLanguage' => array(
'conditions' => array(
'CreditTypeLanguage.alias' => $this->lang18, // 'zho', 'eng', 'chi'
),
),
),
),
'recursive' => 0,
);
$this->Paginator->settings = $all_settings;
$companyCredits = $this->paginate();
$this->set(compact('companyCredits'));