context['template'] = 'resources.show.rows'; $this->nm_settings += array( 'get_rows' => 'resources.resources_bo.get_rows', // Use a different template so it can be accessed from client side 'template' => 'resources.show.rows', // Don't store in session, there's no point 'store_state' => false, // Use a reduced column set for home, user can change if needed 'default_cols' => 'image,name_short_description,useable_quantity', 'row_id' => 'res_id', 'row_modified' => 'ts_modified', 'no_cat' => true, 'filter_label' => lang('Category'), 'filter2' => -1, ); } public function exec($id = null, Etemplate &$etemplate = null) { $ui = new resources_ui(); $this->context['sel_options']['filter']= array(''=>lang('all categories'))+(array)$ui->bo->acl->get_cats(Acl::READ); $this->context['sel_options']['filter2'] = resources_bo::$filter_options; if(!$content['nm']['filter2']) { $content['nm']['filter2'] = key(resources_bo::$filter_options); } $this->nm_settings['actions'] = $ui->get_actions(); parent::exec($id, $etemplate); } /** * Here we need to handle any incoming data. Setup is done in the constructor, * output is handled by parent. * * @param $content =array() */ public static function process($content = array()) { parent::process($content); $ui = new resources_ui(); // This is just copy+pasted from resources_ui line 816, but we don't want // the etemplate exec to fire again. if (is_array($content) && isset($content['nm']['rows']['document'])) // handle insert in default document button like an action { $id = @key($content['nm']['rows']['document']); $content['nm']['action'] = 'document'; $content['nm']['selected'] = array($id); } if ($content['nm']['action']) { // remove sum-* rows from checked rows $content['nm']['selected'] = array_filter($content['nm']['selected'], function($id) { return $id > 0; }); if (!count($content['nm']['selected']) && !$content['nm']['select_all']) { $msg = lang('You need to select some entries first!'); Api\Json\Response::get()->apply('egw.message',array($msg,'error')); } else { $success = $failed = $action_msg = null; if ($ui->action($content['nm']['action'],$content['nm']['selected'],$content['nm']['select_all'], $success,$failed,$action_msg,'index',$msg)) { $msg .= lang('%1 resource(s) %2',$success,$action_msg); Api\Json\Response::get()->apply('egw.message',array($msg,'success')); foreach($content['nm']['selected'] as &$id) { $id = 'resources::'.$id; } // Directly request an update - this will get resources tab too Api\Json\Response::get()->apply('egw.dataRefreshUIDs',array($content['nm']['selected'])); } elseif(empty($msg)) { $msg .= lang('%1 resource(s) %2, %3 failed because of insufficent rights !!!',$success,$action_msg,$failed); Api\Json\Response::get()->apply('egw.message',array($msg,'error')); } } } } }