mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-02-13 08:50:45 +01:00
formatting
This commit is contained in:
parent
79acd44d2b
commit
bb1634be16
@ -11,138 +11,138 @@
|
|||||||
\**************************************************************************/
|
\**************************************************************************/
|
||||||
/* $Id$ */
|
/* $Id$ */
|
||||||
|
|
||||||
$phpgw_info['flags'] = array('currentapp' => 'admin',
|
$phpgw_info['flags'] = array('currentapp' => 'admin',
|
||||||
'enable_nextmatchs_class' => True);
|
'enable_nextmatchs_class' => True);
|
||||||
|
|
||||||
include('../header.inc.php');
|
include('../header.inc.php');
|
||||||
|
|
||||||
$t = CreateObject('phpgwapi.Template',PHPGW_APP_TPL);
|
$t = CreateObject('phpgwapi.Template',PHPGW_APP_TPL);
|
||||||
|
|
||||||
$t->set_file(array('cat_list_t' => 'listcats.tpl',
|
$t->set_file(array('cat_list_t' => 'listcats.tpl',
|
||||||
'cat_list' => 'listcats.tpl'));
|
'cat_list' => 'listcats.tpl'));
|
||||||
$t->set_block('cat_list_t','cat_list','list');
|
$t->set_block('cat_list_t','cat_list','list');
|
||||||
|
|
||||||
$common_hidden_vars = "<input type=\"hidden\" name=\"sort\" value=\"$sort\">\n"
|
$common_hidden_vars = '<input type="hidden" name="sort" value="' . $sort . '">' . "\n"
|
||||||
. "<input type=\"hidden\" name=\"order\" value=\"$order\">\n"
|
. '<input type="hidden" name="order" value="' . $order . '">' . "\n"
|
||||||
. "<input type=\"hidden\" name=\"query\" value=\"$query\">\n"
|
. '<input type="hidden" name="query" value="' . $query . '">' . "\n"
|
||||||
. "<input type=\"hidden\" name=\"start\" value=\"$start\">\n"
|
. '<input type="hidden" name="start" value="' . $start . '">' . "\n"
|
||||||
. "<input type=\"hidden\" name=\"filter\" value=\"$filter\">\n";
|
. '<input type="hidden" name="filter" value="' . $filter . '">' . "\n";
|
||||||
|
|
||||||
$t->set_var('lang_action',lang('Category list'));
|
$t->set_var('lang_action',lang('Category list'));
|
||||||
$t->set_var('add_action',$phpgw->link('/admin/addcategory.php'));
|
$t->set_var('add_action',$phpgw->link('/admin/addcategory.php'));
|
||||||
$t->set_var('lang_add',lang('Add'));
|
$t->set_var('lang_add',lang('Add'));
|
||||||
$t->set_var('title_categories',lang('Global categories'));
|
$t->set_var('title_categories',lang('Global categories'));
|
||||||
$t->set_var('lang_search',lang('Search'));
|
$t->set_var('lang_search',lang('Search'));
|
||||||
$t->set_var('actionurl',$phpgw->link('/admin/categories.php'));
|
$t->set_var('actionurl',$phpgw->link('/admin/categories.php'));
|
||||||
$t->set_var('lang_done',lang('Done'));
|
$t->set_var('lang_done',lang('Done'));
|
||||||
$t->set_var('doneurl',$phpgw->link('/admin/index.php'));
|
$t->set_var('doneurl',$phpgw->link('/admin/index.php'));
|
||||||
|
|
||||||
if (! $start) { $start = 0; }
|
if (! $start) { $start = 0; }
|
||||||
|
|
||||||
if($phpgw_info['user']['preferences']['common']['maxmatchs'] && $phpgw_info['user']['preferences']['common']['maxmatchs'] > 0)
|
if($phpgw_info['user']['preferences']['common']['maxmatchs'] && $phpgw_info['user']['preferences']['common']['maxmatchs'] > 0)
|
||||||
{
|
{
|
||||||
$limit = $phpgw_info['user']['preferences']['common']['maxmatchs'];
|
$limit = $phpgw_info['user']['preferences']['common']['maxmatchs'];
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
$limit = 15;
|
$limit = 15;
|
||||||
}
|
}
|
||||||
|
|
||||||
$c = CreateObject('phpgwapi.categories');
|
$c = CreateObject('phpgwapi.categories');
|
||||||
$c->categories($phpgw_info['user']['account_id'],'phpgw');
|
$c->app_name = 'phpgw';
|
||||||
$categories = $c->return_array('all',$start,$limit,$query,$sort,$order);
|
$categories = $c->return_array('all',$start,True,$query,$sort,$order);
|
||||||
|
|
||||||
//--------------------------------- nextmatch --------------------------------------------
|
//--------------------------------- nextmatch --------------------------------------------
|
||||||
|
|
||||||
$left = $phpgw->nextmatchs->left('/admin/categories.php',$start,$c->total_records);
|
$left = $phpgw->nextmatchs->left('/admin/categories.php',$start,$c->total_records);
|
||||||
$right = $phpgw->nextmatchs->right('/admin/categories.php',$start,$c->total_records);
|
$right = $phpgw->nextmatchs->right('/admin/categories.php',$start,$c->total_records);
|
||||||
$t->set_var('left',$left);
|
$t->set_var('left',$left);
|
||||||
$t->set_var('right',$right);
|
$t->set_var('right',$right);
|
||||||
|
|
||||||
if ($c->total_records > $limit)
|
if ($c->total_records > $limit)
|
||||||
{
|
{
|
||||||
$lang_showing=lang('showing x - x of x',($start + 1),($start + $limit),$c->total_records);
|
$lang_showing=lang('showing x - x of x',($start + 1),($start + $limit),$c->total_records);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
$lang_showing=lang('showing x',$c->total_records);
|
$lang_showing=lang('showing x',$c->total_records);
|
||||||
}
|
}
|
||||||
$t->set_var('lang_showing',$lang_showing);
|
$t->set_var('lang_showing',$lang_showing);
|
||||||
|
|
||||||
// ------------------------------ end nextmatch ------------------------------------------
|
// ------------------------------ end nextmatch ------------------------------------------
|
||||||
|
|
||||||
//------------------- list header variable template-declarations -------------------------
|
//------------------- list header variable template-declarations -------------------------
|
||||||
|
|
||||||
$t->set_var('th_bg',$phpgw_info['theme']['th_bg']);
|
$t->set_var('th_bg',$phpgw_info['theme']['th_bg']);
|
||||||
$t->set_var('sort_name',$phpgw->nextmatchs->show_sort_order($sort,'cat_name',$order,'/admin/categories.php',lang('Name')));
|
$t->set_var('sort_name',$phpgw->nextmatchs->show_sort_order($sort,'cat_name',$order,'/admin/categories.php',lang('Name')));
|
||||||
$t->set_var('sort_description',$phpgw->nextmatchs->show_sort_order($sort,'cat_description',$order,'/admin/categories.php',lang('Description')));
|
$t->set_var('sort_description',$phpgw->nextmatchs->show_sort_order($sort,'cat_description',$order,'/admin/categories.php',lang('Description')));
|
||||||
$t->set_var('lang_edit',lang('Edit'));
|
$t->set_var('lang_edit',lang('Edit'));
|
||||||
$t->set_var('lang_delete',lang('Delete'));
|
$t->set_var('lang_delete',lang('Delete'));
|
||||||
|
|
||||||
// -------------------------- end header declaration --------------------------------------
|
// -------------------------- end header declaration --------------------------------------
|
||||||
|
|
||||||
for ($i=0;$i<count($categories);$i++)
|
for ($i=0;$i<count($categories);$i++)
|
||||||
{
|
|
||||||
if ($categories[$i]['owner'] == $phpgw_info['user']['account_id'] && $categories[$i]['app_name'] == 'phpgw')
|
|
||||||
{
|
{
|
||||||
$tr_color = $phpgw->nextmatchs->alternate_row_color($tr_color);
|
if ($categories[$i]['owner'] == $phpgw_info['user']['account_id'] && $categories[$i]['app_name'] == 'phpgw')
|
||||||
$t->set_var(tr_color,$tr_color);
|
{
|
||||||
|
$tr_color = $phpgw->nextmatchs->alternate_row_color($tr_color);
|
||||||
|
$t->set_var(tr_color,$tr_color);
|
||||||
|
|
||||||
$cat_id = $categories[$i]['id'];
|
$cat_id = $categories[$i]['id'];
|
||||||
$owner = $categories[$i]['owner'];
|
$owner = $categories[$i]['owner'];
|
||||||
$space = ' ';
|
$space = ' ';
|
||||||
$level = $categories[$i]['level'];
|
$level = $categories[$i]['level'];
|
||||||
|
|
||||||
if ($level > 0)
|
if ($level > 0)
|
||||||
{
|
{
|
||||||
$spaceset = str_repeat($space,$level);
|
$spaceset = str_repeat($space,$level);
|
||||||
$name = $spaceset . $phpgw->strip_html($categories[$i]['name']);
|
$name = $spaceset . $phpgw->strip_html($categories[$i]['name']);
|
||||||
}
|
}
|
||||||
|
|
||||||
$descr = $phpgw->strip_html($categories[$i]['description']);
|
$descr = $phpgw->strip_html($categories[$i]['description']);
|
||||||
if (!$descr) { $descr = ' '; }
|
if (!$descr) { $descr = ' '; }
|
||||||
|
|
||||||
if ($level == 0)
|
if ($level == 0)
|
||||||
{
|
{
|
||||||
$name = '<font color="FF0000"><b>' . $phpgw->strip_html($categories[$i]['name']) . '</b></font>';
|
$name = '<font color="FF0000"><b>' . $phpgw->strip_html($categories[$i]['name']) . '</b></font>';
|
||||||
$descr = '<font color="FF0000"><b>' . $descr . '</b></font>';
|
$descr = '<font color="FF0000"><b>' . $descr . '</b></font>';
|
||||||
}
|
}
|
||||||
|
|
||||||
//-------------------------- template declaration for list records ---------------------------
|
//-------------------------- template declaration for list records ---------------------------
|
||||||
|
|
||||||
$t->set_var(array('name' => $name,
|
$t->set_var(array('name' => $name,
|
||||||
'descr' => $descr));
|
'descr' => $descr));
|
||||||
|
|
||||||
if ($categories[$i]['owner'] == $phpgw_info['user']['account_id'])
|
if ($categories[$i]['owner'] == $phpgw_info['user']['account_id'])
|
||||||
{
|
{
|
||||||
$t->set_var('edit',$phpgw->link('/admin/editcategory.php',"cat_id=$cat_id&start=$start&query=$query&sort=$sort&order=$order&filter=$filter"));
|
$t->set_var('edit',$phpgw->link('/admin/editcategory.php',"cat_id=$cat_id&start=$start&query=$query&sort=$sort&order=$order&filter=$filter"));
|
||||||
$t->set_var('lang_edit_entry',lang('Edit'));
|
$t->set_var('lang_edit_entry',lang('Edit'));
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
$t->set_var('edit','');
|
$t->set_var('edit','');
|
||||||
$t->set_var('lang_edit_entry',' ');
|
$t->set_var('lang_edit_entry',' ');
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($categories[$i]['owner'] == $phpgw_info['user']['account_id'])
|
if ($categories[$i]['owner'] == $phpgw_info['user']['account_id'])
|
||||||
{
|
{
|
||||||
$t->set_var('delete',$phpgw->link('/admin/deletecategory.php',"cat_id=$cat_id&start=$start&query=$query&sort=$sort&order=$order&filter=$filter"));
|
$t->set_var('delete',$phpgw->link('/admin/deletecategory.php',"cat_id=$cat_id&start=$start&query=$query&sort=$sort&order=$order&filter=$filter"));
|
||||||
$t->set_var('lang_delete_entry',lang('Delete'));
|
$t->set_var('lang_delete_entry',lang('Delete'));
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
$t->set_var('delete','');
|
$t->set_var('delete','');
|
||||||
$t->set_var('lang_delete_entry',' ');
|
$t->set_var('lang_delete_entry',' ');
|
||||||
}
|
}
|
||||||
|
|
||||||
$t->parse('list','cat_list',True);
|
$t->parse('list','cat_list',True);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
// ---------------------------- end record declaration -----------------------------------------
|
// ---------------------------- end record declaration -----------------------------------------
|
||||||
|
|
||||||
$t->parse('out','cat_list_t',True);
|
$t->parse('out','cat_list_t',True);
|
||||||
$t->p('out');
|
$t->p('out');
|
||||||
|
|
||||||
$phpgw->common->phpgw_footer();
|
$phpgw->common->phpgw_footer();
|
||||||
?>
|
?>
|
||||||
|
Loading…
Reference in New Issue
Block a user