diff --git a/resources/inc/class.ui_resources.inc.php b/resources/inc/class.ui_resources.inc.php new file mode 100755 index 0000000000..1fcfc7ba6c --- /dev/null +++ b/resources/inc/class.ui_resources.inc.php @@ -0,0 +1,562 @@ + + * @author Lukas Weiss + * @version $Id$ + */ + +/** + * General userinterface object for resources + * + * @package resources + */ +class ui_resources +{ + var $public_functions = array( + 'index' => True, + 'edit' => True, + 'show' => True, + 'select' => True, + 'admin' => True, + 'writeLangFile' => True + ); + + /** + * constructor of class ui_resources + * + */ + function ui_resources() + { +// print_r($GLOBALS['egw_info']); die(); + $this->tmpl =& CreateObject('etemplate.etemplate','resources.show'); + $this->bo =& CreateObject('resources.bo_resources'); + $this->html =& $GLOBALS['egw']->html; +// $this->calui = CreateObject('resources.ui_calviews'); + + if(!@is_object($GLOBALS['egw']->js)) + { + $GLOBALS['egw']->js =& CreateObject('phpgwapi.javascript'); + } + } + + /** + * main resources list. + * + * Cornelius Weiss + * @param array $content content from eTemplate callback + * + * FIXME don't translate cats in nextmach + */ + function index($content='') + { + if (is_array($content)) + { + $sessiondata = $content['nm']; + unset($sessiondata['rows']); + $GLOBALS['egw']->session->appsession('session_data','resources_index_nm',$sessiondata); + + if (isset($content['back'])) + { + unset($sessiondata['view_accs_of']); + $GLOBALS['egw']->session->appsession('session_data','resources_index_nm',$sessiondata); + return $this->index(); + } + if (isset($content['btn_delete_selected'])) + { + foreach($content['nm']['rows'] as $row) + { + if($res_id = $row['checkbox'][0]) + { + $msg .= '

'. $this->bo->delete($res_id). '


'; + } + } + return $this->index($msg); + } + + foreach($content['nm']['rows'] as $row) + { + if(isset($row['delete'])) + { + $res_id = array_search('pressed',$row['delete']); + return $this->index($this->bo->delete($res_id)); + } + if(isset($row['view_acc'])) + { + $sessiondata['view_accs_of'] = array_search('pressed',$row['view_acc']); + $GLOBALS['egw']->session->appsession('session_data','resources_index_nm',$sessiondata); + return $this->index(); + } + } + } + $msg = $content; + $content = array(); + $content['msg'] = $msg; + + $content['nm']['header_left'] = 'resources.resource_select.header'; + $content['nm']['get_rows'] = 'resources.bo_resources.get_rows'; + $content['nm']['no_filter'] = False; + $content['nm']['filter_label'] = 'Category'; + $content['nm']['filter_help'] = lang('Select a category'); // is this used??? + $content['nm']['no_filter2'] = true; + $content['nm']['filter_no_lang'] = true; + $content['nm']['no_cat'] = true; + $content['nm']['bottom_too'] = true; + $content['nm']['order'] = 'name'; + $content['nm']['sort'] = 'ASC'; + + $nm_session_data = $GLOBALS['egw']->session->appsession('session_data','resources_index_nm'); + if($nm_session_data) + { + $content['nm'] = $nm_session_data; + } + $content['nm']['options-filter']= array(''=>lang('all categories'))+(array)$this->bo->acl->get_cats(EGW_ACL_READ); + + // check if user is permitted to add resources + if(!$this->bo->acl->get_cats(EGW_ACL_ADD)) + { + $no_button['add'] = true; + } + $no_button['back'] = true; + $no_button['add_sub'] = true; + $GLOBALS['egw_info']['flags']['app_header'] = lang('resources'); + + $GLOBALS['egw_info']['flags']['java_script'] .= ""; + + if($content['nm']['view_accs_of']) + { + $master = $this->bo->so->read(array('res_id' => $content['nm']['view_accs_of'])); + $content['view_accs_of'] = $content['nm']['view_accs_of']; + $content['nm']['get_rows'] = 'resources.bo_resources.get_rows'; + $content['nm']['no_filter'] = true; + $content['nm']['no_filter2'] = true; + $no_button['back'] = false; + $no_button['add'] = true; + $no_button['add_sub'] = false; + $GLOBALS['egw_info']['flags']['app_header'] = lang('resources') . ' - ' . lang('accessories of '). ' '. $master['name'] . + ($master['short_description'] ? ' [' . $master['short_description'] . ']' : ''); + } + $preserv = $content; + $GLOBALS['egw']->session->appsession('session_data','resources_index_nm',$content['nm']); + $this->tmpl->read('resources.show'); + return $this->tmpl->exec('resources.ui_resources.index',$content,$sel_options,$no_button,$preserv); + } + + /** + * @author Cornelius Weiss + * invokes add or edit dialog for resources + * + * @param $content Content from the eTemplate Exec call or id on inital call + */ + function edit($content=0,$accessory_of = -1) + { + if (is_array($content)) + { + if(isset($content['save']) || isset($content['delete'])) + { + if(isset($content['save'])) + { + unset($content['save']); +// if($content['id'] != 0) +// { +// // links are already saved by eTemplate +// unset($resource['link_to']['to_id']); +// } + $content['msg'] = $this->bo->save($content); + } + if(isset($content['delete'])) + { + unset($content['delete']); + $content['msg'] = $this->bo->delete($content['res_id']); + } + + if($content['msg']) + { + return $this->edit($content); + } + $js = "opener.location.href='".$GLOBALS['egw']->link('/index.php', + array('menuaction' => 'resources.ui_resources.index'))."';"; + $js .= 'window.close();'; + echo "\n"; + $GLOBALS['egw']->common->egw_exit(); + } + } + else + { + $res_id = $content; + if (isset($_GET['res_id'])) $res_id = $_GET['res_id']; + if (isset($_GET['accessory_of'])) $accessory_of = $_GET['accessory_of']; + $content = array('res_id' => $res_id); + + if ($res_id > 0) + { + $content = $this->bo->read($res_id); + $content['gen_src_list'] = strstr($content['picture_src'],'.') ? $content['picture_src'] : false; + $content['picture_src'] = strstr($content['picture_src'],'.') ? 'gen_src' : $content['picture_src']; + $content['link_to'] = array( + 'to_id' => $res_id, + 'to_app' => 'resources' + ); + } + + } + // some presetes + $content['resource_picture'] = $this->bo->get_picture($content['res_id'],$content['picture_src'],$size=true); + $content['quantity'] = $content['quantity'] ? $content['quantity'] : 1; + $content['useable'] = $content['useable'] ? $content['useable'] : 1; + $content['accessory_of'] = $content['accessory_of'] ? $content['accessory_of'] : $accessory_of; + + $sel_options['gen_src_list'] = $this->bo->get_genpicturelist(); + $sel_options['cat_id'] = $this->bo->acl->get_cats(EGW_ACL_ADD); + $sel_options['cat_id'] = count($sel_options['cat_id']) == 1 ? $sel_options['cat_id'] : + $content['cat_id'] ? $sel_options['cat_id'] : array('' => lang('select one')) + $sel_options['cat_id']; + if($accessory_of > 0 || $content['accessory_of'] > 0) + { + $content['accessory_of'] = $content['accessory_of'] ? $content['accessory_of'] : $accessory_of; + $catofmaster = $this->bo->so->get_value('cat_id',$content['accessory_of']); + $sel_options['cat_id'] = array($catofmaster => $sel_options['cat_id'][$catofmaster]); + } + +// $content['general|page|pictures|links'] = 'resources.edit_tabs.page'; //debug + $no_button = array(); // TODO: show delete button only if allowed to delete resource + $preserv = $content; + $this->tmpl->read('resources.edit'); + return $this->tmpl->exec('resources.ui_resources.edit',$content,$sel_options,$no_button,$preserv,2); + + } + + /** + * adminsection of resources + * + * @author Cornelius Weiss + */ + function admin($content='') + { + if(is_array($content)) + { + if(isset($content['save'])) + { + $this->bo->conf->read_repository(); + $this->bo->conf->save_value('dont_use_vfs',$content['dont_use_vfs']); + } + else + { + return $GLOBALS['egw']->redirect_link('/admin/index.php'); + } + } + $content = $this->bo->conf->read_repository(); + $this->tmpl->read('resources.admin'); + $this->tmpl->exec('resources.ui_resources.admin',$content,$sel_options,$no_button,$preserv); + } + + /** + * showes a single resource + * + * @param int $res_id resource id + * @author Lukas Weiss + */ + function show($res_id=0) + { + if (is_array($content = $res_id)) + { + if(isset($content['btn_delete'])) + { + $content['msg'] = $this->bo->delete($content['res_id']); + if($content['msg']) + { + return $this->show($content); + } + $js = "opener.location.href='".$GLOBALS['egw']->link('/index.php', + array('menuaction' => 'resources.ui_resources.index'))."';"; + $js .= 'window.close();'; + echo "\n"; + $GLOBALS['egw']->common->egw_exit(); + } + if(isset($content['btn_edit'])) + { + return $this->edit($content['res_id']); + } + + } + if (isset($_GET['res_id'])) $res_id = $_GET['res_id']; + + $content = array('res_id' => $res_id); + $content = $this->bo->read($res_id); + $content['gen_src_list'] = strstr($content['picture_src'],'.') ? $content['picture_src'] : false; + $content['picture_src'] = strstr($content['picture_src'],'.') ? 'gen_src' : $content['picture_src']; + $content['link_to'] = array( + 'to_id' => $res_id, + 'to_app' => 'resources' + ); + + $content['resource_picture'] = $this->bo->get_picture($content['res_id'],$content['picture_src'],$size=true); + $content['quantity'] = $content['quantity'] ? $content['quantity'] : 1; + $content['useable'] = $content['useable'] ? $content['useable'] : 1; + + $content['quantity'] = ($content['useable'] == $content['quantity']) ? $content['quantity'] : $content['quantity'].' ('.lang('useable').' '.$content['useable'].')'; + + //$sel_options['gen_src_list'] = $this->bo->get_genpicturelist(); + + $content['cat_name'] = $this->bo->acl->get_cat_name($content['cat_id']); + $content['cat_admin'] = $this->bo->acl->get_cat_admin($content['cat_id']); + +/* if($content['accessory_of'] > 0) + { + $catofmaster = $this->bo->so->get_value('cat_id',$content['accessory_of']); + $sel_options['cat_id'] = array($catofmaster => $sel_options['cat_id'][$catofmaster]); + } +*/ + $content['description'] = chop($content['long_description']) ? $content['long_description'] : (chop($content['short_description']) ? $content['short_description'] : lang("no description available")); + $content['description'] = $content['description'] ? $content['description'] : lang('no description available'); + $content['link_to'] = array( + 'to_id' => $res_id, + 'to_app' => 'resources' + ); + $sel_options = array(); + $no_button = array( + 'btn_buy' => !$content['buyable'], + 'btn_book' => !$content['bookable'], + 'btn_calendar' => !$content['bookable'], + 'btn_edit' => !$this->bo->acl->is_permitted($content['cat_id'],EGW_ACL_EDIT), + 'btn_delete' => !$this->bo->acl->is_permitted($content['cat_id'],EGW_ACL_DELETE) + ); + $preserv = $content; + $this->tmpl->read('resources.showdetails'); + return $this->tmpl->exec('resources.ui_resources.show',$content,$sel_options,$no_button,$preserv,2); + + } + + /** + * select resources + * + * @author Lukas Weiss + */ + function select($content='') + { + if (!is_object($GLOBALS['phpgw']->js)) + { + $GLOBALS['phpgw']->js = CreateObject('phpgwapi.javascript'); + } + $GLOBALS['phpgw']->js->set_onload("copyOptions('exec[resources][selectbox]');"); + + $GLOBALS['egw_info']['flags']['java_script'] .= ""; + + $content['nm']['header_left'] = 'resources.resource_select.header'; + $content['nm']['show_bookable'] = true; + $content['nm']['get_rows'] = 'resources.bo_resources.get_rows'; + $content['nm']['no_filter'] = False; + $content['nm']['filter_label'] = 'Category'; + $content['nm']['filter_help'] = lang('Select a category'); // is this used??? + $content['nm']['options-filter']= array(''=>lang('all categories'))+(array)$this->bo->acl->get_cats(EGW_ACL_READ); + $content['nm']['no_filter2'] = true; + $content['nm']['filter_no_lang'] = true; + $content['nm']['no_cat'] = true; + $content['nm']['rows']['js_id'] = 1; + + $sel_options = array(); + $no_button = array(); + $this->tmpl->read('resources.resource_select'); + return $this->tmpl->exec('resources.ui_resources.select',$content,$sel_options,$no_button,$preserv,2); + } + + /** + * get_calendar_sidebox + * get data für calendar sidebox + * + * @author Lukas Weiss + * @param array $param with keys menuaction, owner and optional date + * @return array with: label=>link or array with text + */ + function get_calendar_sidebox($param) + { + $cats = $this->bo->acl->get_cats(EGW_ACL_READ); + if (!$cats) return array(); + + $owners = explode(',',$param['owner']); + unset($param['owner']); + $res_cats = $selected = array(); + + // this gets the resource-ids of the cats and implodes them to the array-key of the selectbox, + // so it is possible to select all resources of a category + foreach($cats as $cat_id => $cat_name) + { + if ($resources = $this->bo->so->search(array('cat_id' => $cat_id, 'bookable' => '1'),'res_id')) + { + $keys = array(); + foreach($resources as $res) + { + $keys[] = 'r'.$res['res_id']; + } + $res_cats[implode(',',$keys)] = $cat_name; + + if (count(array_intersect($keys,$owners)) == count($keys)) + { + $selected[] = implode(',',$keys); + $owners = array_diff($owners,$keys); + } + } + } + // add already selected single resources to the selectbox, eg. call of the resource-calendar from the resources app + $resources = array('r0' => lang('none')); + $res_ids = array(); + foreach($owners as $key => $owner) + { + if ($owner{0} == 'r') + { + $res_ids[] = (int) substr($owner,1); + $selected[] = $owner; + } + } + if (count($res_ids)) + { + foreach($this->bo->so->search(array('res_id' => $res_ids),'res_id,name') as $data) + { + $resources['r'.$data['res_id']] = $data['name']; + } + } + $selectbox = $this->html->select( + 'owner', + $selected, + array_merge($resources,$res_cats), + $no_lang=true, + $options='style="width: 165px;" onchange="load_cal(\''. + $GLOBALS['egw']->link('/index.php',$param).'\',\'uical_select_resource\');" id="uical_select_resource"', + $multiple=count($selected) ? 4 : 0 + ); + return array( + array( + 'text' => $selectbox, + 'no_lang' => True, + 'link' => False + ) + ); + } +} +