In CakePHP v. 2.5.2, is there a simpler way to do this check?
if(!empty($this->passedArgs['somemodel.someatribute'])) {
$paginate['conditions']['somemodel.someatribute'] = base64_decode($this->passedArgs['somemodel.someatribute']);
}
When I have many fields, the list will be very long and I would like to avoid that.