Hi I am really new in CakePhp, I hope you can help me
class BookingsController extends AppController {
public $helpers = array("PDF");
//public $virtualFields = array(
// 'full_name' => 'CONCAT(Customer.cust_fname, ", ", Customer.cust_fname)'
//);
public $components = array('RequestHandler');
public $components = array('Search.Prg');
public $presetVars = array(
array('field' => 'search', 'type' => 'value'),
);
/**
My question now is that I need $components in both. Is there any way to merge it together? Or how can I call both request handler and search.prg? I hope u can help