cat_id = get_params('cat_id',0); $form->page = get_params('page',1); $form->store_id = get_store_id(); $result = $form->search(); return $result; } public function actionPlay(){ $form = new DeviceForm(); $form->store_id = get_store_id(); $form->device_id = get_params('device_id'); $result = $form->getPlayUrl(); return $result; } }