True, 'add' => True, 'edit' => True, 'delete' => True ); function uicategories() { $this->bo = CreateObject('preferences.bocategories',$cats_app); $this->nextmatchs = CreateObject('phpgwapi.nextmatchs'); $this->account = $GLOBALS['phpgw_info']['user']['account_id']; $this->user = $GLOBALS['phpgw_info']['user']['fullname']; $this->start = $this->bo->start; $this->query = $this->bo->query; $this->sort = $this->bo->sort; $this->order = $this->bo->order; } function save_sessiondata($cats_app) { $data = array ( 'start' => $this->start, 'query' => $this->query, 'sort' => $this->sort, 'order' => $this->order ); $this->bo->save_sessiondata($data,$cats_app); } function set_langs() { $GLOBALS['phpgw']->template->set_var('th_bg',$GLOBALS['phpgw_info']['theme']['th_bg']); $GLOBALS['phpgw']->template->set_var('lang_access',lang('Private')); $GLOBALS['phpgw']->template->set_var('lang_save',lang('Save')); $GLOBALS['phpgw']->template->set_var('user_name',$this->user); $GLOBALS['phpgw']->template->set_var('lang_search',lang('Search')); $GLOBALS['phpgw']->template->set_var('lang_done',lang('Done')); $GLOBALS['phpgw']->template->set_var('lang_sub',lang('Add sub')); $GLOBALS['phpgw']->template->set_var('lang_edit',lang('Edit')); $GLOBALS['phpgw']->template->set_var('lang_delete',lang('Delete')); $GLOBALS['phpgw']->template->set_var('lang_parent',lang('Parent category')); $GLOBALS['phpgw']->template->set_var('lang_none',lang('None')); $GLOBALS['phpgw']->template->set_var('lang_name',lang('Name')); $GLOBALS['phpgw']->template->set_var('lang_descr',lang('Description')); $GLOBALS['phpgw']->template->set_var('lang_add',lang('Add')); $GLOBALS['phpgw']->template->set_var('lang_reset',lang('Clear Form')); } function cat_data($edata,$data) { for ($j=0;$j' . "\n"; } return $td_data; } function index() { global $cats_app, $extra, $global_cats, $cats_level; $link_data = array ( 'menuaction' => 'preferences.uicategories.index', 'cats_app' => $cats_app, 'extra' => $extra, 'global_cats' => $global_cats, 'cats_level' => $cats_level ); if ($extra) { $edata = explode(',',$extra); } $GLOBALS['phpgw']->common->phpgw_header(); $GLOBALS['phpgw']->template->set_file(array('cat_list_t' => 'listcats.tpl')); $GLOBALS['phpgw']->template->set_block('cat_list_t','cat_list'); $GLOBALS['phpgw']->template->set_block('cat_list_t','cat_row'); $this->set_langs(); $GLOBALS['phpgw']->template->set_var('title_categories',lang('categories for')); $GLOBALS['phpgw']->template->set_var('lang_app',lang($cats_app)); $GLOBALS['phpgw']->template->set_var('actionurl',$GLOBALS['phpgw']->link('/index.php',$link_data)); $GLOBALS['phpgw']->template->set_var('doneurl',$GLOBALS['phpgw']->link('/preferences/index.php')); if(!$this->start) { $this->start = 0; } if (!$global_cats) { $global_cats = False; } $this->bo->cats->app_name = $cats_app; $cats = $this->bo->get_list($global_cats); //--------------------------------- nextmatch -------------------------------------------- $left = $this->nextmatchs->left('/index.php',$this->start,$this->bo->cats->total_records,$link_data); $right = $this->nextmatchs->right('/index.php',$this->start,$this->bo->cats->total_records,$link_data); $GLOBALS['phpgw']->template->set_var('left',$left); $GLOBALS['phpgw']->template->set_var('right',$right); $GLOBALS['phpgw']->template->set_var('lang_showing',$this->nextmatchs->show_hits($this->bo->cats->total_records,$this->start)); // ------------------------------ end nextmatch ------------------------------------------ //------------------- list header variable template-declarations ------------------------- $GLOBALS['phpgw']->template->set_var('sort_name',$this->nextmatchs->show_sort_order($this->sort,'cat_name',$this->order,'/index.php',lang('Name'),$link_data)); $GLOBALS['phpgw']->template->set_var('sort_description',$this->nextmatchs->show_sort_order($this->sort,'cat_description',$this->order,'/index.php',lang('Description'),$link_data)); $th_data = ''; if (is_array($edata)) { for($i=0;$i' . lang($edata[$i]) . ''."\n"; } } $GLOBALS['phpgw']->template->set_var('th_data',$th_data); // -------------------------- end header declaration -------------------------------------- for ($i=0;$inextmatchs->template_alternate_row_color($GLOBALS['phpgw']->template); if ($cats[$i]['app_name'] == 'phpgw') { $appendix = '<' . lang('Global') . '>'; } elseif ($cats[$i]['owner'] == '-1') { $appendix = '<' . lang('Global') . ' ' . $GLOBALS['phpgw_info']['apps'][$cats_app]['title'] . '>'; } else { $appendix = ''; } $level = $cats[$i]['level']; if ($level > 0) { $space = '  '; $spaceset = str_repeat($space,$level); $name = $spaceset . $GLOBALS['phpgw']->strip_html($cats[$i]['name']) . $appendix; } $descr = $GLOBALS['phpgw']->strip_html($cats[$i]['description']); if (!$descr) { $descr = ' '; } if (is_array($edata)) { $data = unserialize($cats[$i]['data']); if (! is_array($data)) { $holder = ' ' . "\n"; $placeholder = str_repeat($holder,count($edata)); $GLOBALS['phpgw']->template->set_var('td_data',$placeholder); } else { $GLOBALS['phpgw']->template->set_var('td_data',$this->cat_data($edata,$data)); } } if ($level == 0) { $name = '' . $GLOBALS['phpgw']->strip_html($cats[$i]['name']) . '' . $appendix; $descr = '' . $descr . ''; } $GLOBALS['phpgw']->template->set_var(array('name' => $name, 'descr' => $descr)); $GLOBALS['phpgw']->template->set_var('app_url',$GLOBALS['phpgw']->link('/' . $cats_app . '/index.php','cat_id=' . $cats[$i]['id'])); if ($cats_level || ($level == 0)) { if ($cats[$i]['owner'] == $this->account || $cats[$i]['app_name'] == 'phpgw') { $link_data['menuaction'] = 'preferences.uicategories.add'; $link_data['cat_parent'] = $cats[$i]['id']; $GLOBALS['phpgw']->template->set_var('add_sub',$GLOBALS['phpgw']->link('/index.php',$link_data)); $GLOBALS['phpgw']->template->set_var('lang_sub_entry',lang('Add sub')); } } else { $GLOBALS['phpgw']->template->set_var('add_sub',''); $GLOBALS['phpgw']->template->set_var('lang_sub_entry',' '); } $link_data['cat_id'] = $cats[$i]['id']; if ($cats[$i]['owner'] == $this->account && $cats[$i]['app_name'] != 'phpgw') { $link_data['menuaction'] = 'preferences.uicategories.edit'; $GLOBALS['phpgw']->template->set_var('edit',$GLOBALS['phpgw']->link('/index.php',$link_data)); $GLOBALS['phpgw']->template->set_var('lang_edit_entry',lang('Edit')); $link_data['menuaction'] = 'preferences.uicategories.delete'; $GLOBALS['phpgw']->template->set_var('delete',$GLOBALS['phpgw']->link('/index.php',$link_data)); $GLOBALS['phpgw']->template->set_var('lang_delete_entry',lang('Delete')); } else { $GLOBALS['phpgw']->template->set_var('edit',''); $GLOBALS['phpgw']->template->set_var('lang_edit_entry',' '); $GLOBALS['phpgw']->template->set_var('delete',''); $GLOBALS['phpgw']->template->set_var('lang_delete_entry',' '); } $GLOBALS['phpgw']->template->fp('rows','cat_row',True); } $link_data['menuaction'] = 'preferences.uicategories.add'; $GLOBALS['phpgw']->template->set_var('add_action',$GLOBALS['phpgw']->link('/index.php',$link_data)); $this->save_sessiondata($cats_app); $GLOBALS['phpgw']->template->fp('phpgw_body','cat_list',True); } function add() { global $cats_app, $extra, $global_cats, $cats_level; $link_data = array ( 'menuaction' => 'preferences.uicategories.add', 'cats_app' => $cats_app, 'extra' => $extra, 'global_cats' => $global_cats, 'cats_level' => $cats_level ); $GLOBALS['phpgw']->common->phpgw_header(); $new_parent = get_var('new_parent',Array('POST')); $submit = get_var('submit',Array('POST')); $cat_parent = get_var('cat_parent',Array('GET','POST')); $cat_name = get_var('cat_name',Array('POST')); $cat_description = get_var('cat_description',Array('POST')); $cat_data = get_var('cat_data',Array('POST')); $cat_access = get_var('cat_access',Array('POST')); $GLOBALS['phpgw']->template->set_file(array('cat_form' => 'category_form.tpl')); $GLOBALS['phpgw']->template->set_block('cat_form','data_row'); $GLOBALS['phpgw']->template->set_block('cat_form','add'); $GLOBALS['phpgw']->template->set_block('cat_form','edit'); $GLOBALS['phpgw']->template->set_block('cat_form','form'); $this->set_langs(); $this->bo->cats->app_name = $cats_app; if ($new_parent) { $cat_parent = $new_parent; } if (!$global_cats) { $global_cats = False; } if ($submit) { $data = serialize($cat_data); $values = array ( 'parent' => $cat_parent, 'descr' => $cat_description, 'name' => $cat_name, 'access' => $cat_access, 'data' => $data ); $error = $this->bo->check_values($values); if (is_array($error)) { $GLOBALS['phpgw']->template->set_var('message',$GLOBALS['phpgw']->common->error_list($error)); } else { $this->bo->save_cat($values); $GLOBALS['phpgw']->template->set_var('message',lang('Category x has been added !', $cat_name)); } } $GLOBALS['phpgw']->template->set_var('title_categories',lang('Add x category for',lang($cats_app))); $GLOBALS['phpgw']->template->set_var('lang_app',lang($cats_app)); $GLOBALS['phpgw']->template->set_var('actionurl',$GLOBALS['phpgw']->link('/index.php',$link_data)); if ($cats_level) { $type = 'all'; } else { $type = 'mains'; } $GLOBALS['phpgw']->template->set_var('category_list',$this->bo->cats->formated_list('select',$type,$cat_parent,$global_cats)); $GLOBALS['phpgw']->template->set_var('cat_name',$cat_name); $GLOBALS['phpgw']->template->set_var('cat_description',$cat_description); $GLOBALS['phpgw']->template->set_var('access',''); if ($extra) { $edata = explode(',',$extra); for($i=0;$itemplate->set_var('td_data',''); $GLOBALS['phpgw']->template->set_var('lang_data',lang($edata[$i])); $GLOBALS['phpgw']->template->fp('rows','data_row',True); } } $link_data['menuaction'] = 'preferences.uicategories.index'; $GLOBALS['phpgw']->template->set_var('doneurl',$GLOBALS['phpgw']->link('/index.php',$link_data)); $GLOBALS['phpgw']->template->parse('buttons','add'); $GLOBALS['phpgw']->template->fp('phpgw_body','form'); } function edit() { global $cats_app, $extra, $global_cats, $cats_level, $cat_id; $link_data = array ( 'menuaction' => 'preferences.uicategories.index', 'cats_app' => $cats_app, 'extra' => $extra, 'global_cats' => $global_cats, 'cats_level' => $cats_level, 'cat_id' => $cat_id ); if (!$cat_id) { Header('Location: ' . $GLOBALS['phpgw']->link('/index.php',$link_data)); } $GLOBALS['phpgw']->common->phpgw_header(); $new_parent = get_var('new_parent',Array('POST')); $submit = get_var('submit',Array('POST')); $cat_parent = get_var('cat_parent',Array('POST')); $cat_name = get_var('cat_name',Array('POST')); $cat_description = get_var('cat_description',Array('POST')); $cat_data = get_var('cat_data',Array('POST')); $cat_access = get_var('cat_access',Array('POST')); $GLOBALS['phpgw']->template->set_file(array('cat_form' => 'category_form.tpl')); $GLOBALS['phpgw']->template->set_block('cat_form','data_row'); $GLOBALS['phpgw']->template->set_block('cat_form','add'); $GLOBALS['phpgw']->template->set_block('cat_form','edit'); $GLOBALS['phpgw']->template->set_block('cat_form','form'); $this->set_langs(); $GLOBALS['phpgw']->template->set_var('doneurl',$GLOBALS['phpgw']->link('/index.php',$link_data)); $this->bo->cats->app_name = $cats_app; if ($new_parent) { $cat_parent = $new_parent; } if (!$global_cats) { $global_cats = False; } if ($submit) { $data = serialize($cat_data); $values = array ( 'id' => $cat_id, 'parent' => $cat_parent, 'descr' => $cat_description, 'name' => $cat_name, 'access' => $cat_access, 'data' => $data ); $error = $this->bo->check_values($values); if (is_array($error)) { $GLOBALS['phpgw']->template->set_var('message',$GLOBALS['phpgw']->common->error_list($error)); } else { $this->bo->save_cat($values); $GLOBALS['phpgw']->template->set_var('message',lang('Category x has been updated !',$cat_name)); } } $cats = $this->bo->cats->return_single($cat_id); $GLOBALS['phpgw']->template->set_var('title_categories',lang('Edit x category for',lang($cats_app))); $GLOBALS['phpgw']->template->set_var('lang_app',lang($cats_app)); $link_data['menuaction'] = 'preferences.uicategories.edit'; $GLOBALS['phpgw']->template->set_var('actionurl',$GLOBALS['phpgw']->link('/index.php',$link_data)); $GLOBALS['phpgw']->template->set_var('cat_name',$GLOBALS['phpgw']->strip_html($cats[0]['name'])); $GLOBALS['phpgw']->template->set_var('cat_description',$GLOBALS['phpgw']->strip_html($cats[0]['description'])); if ($cats_level) { $type = 'all'; } else { $type = 'mains'; } $GLOBALS['phpgw']->template->set_var('category_list',$this->bo->cats->formated_list('select',$type,$cats[0]['parent'],$global_cats)); $GLOBALS['phpgw']->template->set_var('access',''); if ($extra) { $edata = explode(',',$extra); $data = unserialize($cats[0]['data']); for($i=0;$itemplate->set_var('td_data',''); $GLOBALS['phpgw']->template->set_var('lang_data',lang($edata[$i])); $GLOBALS['phpgw']->template->fp('rows','data_row',True); } } if ($cats[0]['owner'] == $this->account) { $link_data['menuaction'] = 'preferences.uicategories.delete'; $GLOBALS['phpgw']->template->set_var('delete','
'); } else { $GLOBALS['phpgw']->template->set_var('delete',' '); } $GLOBALS['phpgw']->template->parse('buttons','edit'); $GLOBALS['phpgw']->template->fp('phpgw_body','form'); } function delete() { global $cats_app, $extra, $global_cats, $cats_level, $cat_id; $link_data = array ( 'menuaction' => 'preferences.uicategories.index', 'cats_app' => $cats_app, 'extra' => $extra, 'global_cats' => $global_cats, 'cats_level' => $cats_level, 'cat_id' => $cat_id ); if (!$cat_id) { Header('Location: ' . $GLOBALS['phpgw']->link('/index.php',$link_data)); } $this->bo->cats->app_name = $cats_app; if(get_var('confirm',Array('POST'))) { if(get_var('subs',Array('POST'))) { $this->bo->delete($cat_id,True); } else { $this->bo->delete($cat_id,False); } Header('Location: ' . $GLOBALS['phpgw']->link('/index.php',$link_data)); } else { $GLOBALS['phpgw']->template->set_file(array('category_delete' => 'delete.tpl')); $nolink = $GLOBALS['phpgw']->link('/index.php',$link_data); $GLOBALS['phpgw']->common->phpgw_header(); $GLOBALS['phpgw']->template->set_var('deleteheader',lang('Are you sure you want to delete this category ?')); $exists = $this->bo->exists(array ( 'type' => 'subs', 'cat_name' => '', 'cat_id' => $cat_id )); if ($exists) { $GLOBALS['phpgw']->template->set_var('lang_subs',lang('Do you also want to delete all subcategories ?')); $GLOBALS['phpgw']->template->set_var('subs',''); } else { $GLOBALS['phpgw']->template->set_var('lang_subs',''); $GLOBALS['phpgw']->template->set_var('subs', ''); } $GLOBALS['phpgw']->template->set_var('nolink',$nolink); $GLOBALS['phpgw']->template->set_var('lang_no',lang('No')); $link_data['menuaction'] = 'preferences.uicategories.delete'; $GLOBALS['phpgw']->template->set_var('action_url',$GLOBALS['phpgw']->link('/index.php',$link_data)); $GLOBALS['phpgw']->template->set_var('lang_yes',lang('Yes')); $GLOBALS['phpgw']->template->fp('phpgw_body','category_delete'); } } } ?>