"addressbook", "enable_nextmatchs_class" => True, "enable_categories_class" => True); include("../header.inc.php"); $t = CreateObject('phpgwapi.Template',$phpgw->common->get_tpl_dir('addressbook')); $t->set_file(array('cat_list_t' => 'listcats.tpl', 'cat_list' => 'listcats.tpl')); $t->set_block('cat_list_t','cat_list','list'); $common_hidden_vars = "\n" . "\n" . "\n" . "\n" . "\n"; if (isset($phpgw_info["user"]["preferences"]["addressbook"]["addressbook_font"])) { $font = $phpgw_info["user"]["preferences"]["addressbook"]["addressbook_font"]; } else { $font = set_font(); } $t->set_var('font',$font); $t->set_var('user_name',$phpgw_info["user"]["fullname"]); $t->set_var('title_categories',lang('Categories for')); $t->set_var('lang_action',lang('Category list')); $t->set_var('add_action',$phpgw->link("/addressbook/addcategory.php")); $t->set_var('lang_add',lang('Add')); $t->set_var('lang_search',lang('Search')); $t->set_var('actionurl',$phpgw->link("/addressbook/categories.php")); $t->set_var('lang_done',lang('Done')); $t->set_var('doneurl',$phpgw->link('/preferences/')); if (! $start) { $start = 0; } if($phpgw_info["user"]["preferences"]["common"]["maxmatchs"] && $phpgw_info["user"]["preferences"]["common"]["maxmatchs"] > 0) { $limit = $phpgw_info["user"]["preferences"]["common"]["maxmatchs"]; } else { $limit = 15; } $c = CreateObject('phpgwapi.categories'); $categories = $c->return_array($type,$start,$limit,$query,$sort,$order); //--------------------------------- nextmatch -------------------------------------------- $left = $phpgw->nextmatchs->left('/addressbook/categories.php',$start,$c->total_records); $right = $phpgw->nextmatchs->right('/addressbook/categories.php',$start,$c->total_records); $t->set_var('left',$left); $t->set_var('right',$right); if ($c->total_records > $limit) { $lang_showing=lang("showing x - x of x",($start + 1),($start + $limit),$c->total_records); } else { $lang_showing=lang("showing x",$c->total_records); } $t->set_var('lang_showing',$lang_showing); // ------------------------------ end nextmatch ------------------------------------------ //------------------- list header variable template-declarations ------------------------- $t->set_var('th_bg',$phpgw_info["theme"][th_bg]); $t->set_var('sort_name',$phpgw->nextmatchs->show_sort_order($sort,'cat_name',$order,'/addressbook/categories.php',lang('Name'))); $t->set_var('sort_description',$phpgw->nextmatchs->show_sort_order($sort,'cat_description',$order,'/addressbook/categories.php',lang('Description'))); $t->set_var('lang_addressbook',lang('Addressbook')); $t->set_var('lang_edit',lang('Edit')); $t->set_var('lang_delete',lang('Delete')); // -------------------------- end header declaration -------------------------------------- for ($i=0;$inextmatchs->alternate_row_color($tr_color); $t->set_var(tr_color,$tr_color); $cat_id = $categories[$i]['id']; $owner = $categories[$i]['owner']; $name = $phpgw->strip_html($categories[$i]['name']); $descr = $phpgw->strip_html($categories[$i]['description']); if (! $descr) { $descr = ' '; } //-------------------------- template declaration for list records --------------------------- $t->set_var(array('name' => $name, 'descr' => $descr)); $t->set_var('addressbook',$phpgw->link('/addressbook/index.php',"filter=$cat_id")); if ($categories[$i]["owner"] == $phpgw_info["user"]["account_id"]) { $t->set_var('edit',$phpgw->link('/addressbook/editcategory.php',"cat_id=$cat_id")); $t->set_var('lang_edit_entry',lang('Edit')); } else { $t->set_var('edit',''); $t->set_var('lang_edit_entry',' '); } if ($categories[$i]["owner"] == $phpgw_info["user"]["account_id"]) { $t->set_var('delete',$phpgw->link('/addressbook/deletecategory.php',"cat_id=$cat_id")); $t->set_var('lang_delete_entry',lang('Delete')); } else { $t->set_var('delete',''); $t->set_var('lang_delete_entry',' '); } $t->parse('list','cat_list',True); } } // ---------------------------- end record declaration ----------------------------------------- $t->parse('out','cat_list_t',True); $t->p('out'); $phpgw->common->phpgw_footer(); ?>