This commit is contained in:
ceb 2002-10-13 22:04:55 +00:00
parent 02ed6da227
commit 23edad505e
5 changed files with 19 additions and 27 deletions

View File

@ -138,14 +138,7 @@
function formatted_list($data)
{
if ($data['globals'])
{
return $this->cats->formated_list($data['select'],$data['all'],$data['parent'],True);
}
else
{
return $this->cats->formated_list($data['select'],$data['all'],$data['parent']);
}
return $this->cats->formatted_list($data);
}
function delete($data)

View File

@ -289,7 +289,7 @@
$parent = $values['parent'];
}
$GLOBALS['phpgw']->template->set_var('category_list',$this->bo->cats->formated_list(array('format' => 'select',
$GLOBALS['phpgw']->template->set_var('category_list',$this->bo->cats->formatted_list(array('format' => 'select',
'type' => 'all',
'selected' => $parent,
'globals' => $global_cats)));
@ -372,10 +372,10 @@
$GLOBALS['phpgw']->template->set_var('cat_name',$GLOBALS['phpgw']->strip_html($cats['name']));
$GLOBALS['phpgw']->template->set_var('cat_description',$GLOBALS['phpgw']->strip_html($cats['descr']));
$GLOBALS['phpgw']->template->set_var('category_list',$this->bo->formatted_list(array('select' => 'select',
'all' => 'all',
'parent' => $cats['parent'],
'global_cats' => $global_cats)));
$GLOBALS['phpgw']->template->set_var('category_list',$this->bo->cats->formatted_list(array('format' => 'select',
'type' => 'all',
'selected' => $cats['parent'],
'globals' => $global_cats)));
$GLOBALS['phpgw']->template->parse('buttons','edit');
$GLOBALS['phpgw']->template->fp('phpgw_body','form');
}

View File

@ -326,9 +326,9 @@
@param $id integer id of category
@result $cats array populated with
*/
function return_single($id = '')
function return_single($cat_id = '')
{
$this->db->query('SELECT * FROM phpgw_categories WHERE cat_id=' . intval($id),__LINE__,__FILE__);
$this->db->query('SELECT * FROM phpgw_categories WHERE cat_id=' . intval($cat_id),__LINE__,__FILE__);
list($cat) = $this->db2cats();
@ -336,7 +336,7 @@
}
/*!
@function formated_list
@function formatted_list
@abstract return into a select box, list or other formats
@param $format currently only supports select (select box)
@param $type string - subs or mains
@ -344,12 +344,8 @@
@param $globals True or False, includes the global phpgroupware categories or not
@result $s array - populated with categories
*/
function formatted_list($format,$type = 'all',$selected = '',$globals = False,$site_link = 'site')
{
return $this->formated_list($format,$type,$selected,$globals,$site_link);
}
function formated_list($format,$type = 'all',$selected = '',$globals = False,$site_link = 'site')
function formatted_list($format,$type = 'all',$selected = '',$globals = False,$site_link = 'site')
{
if(is_array($format))
{

View File

@ -119,9 +119,9 @@
return $this->cats->exists($data);
}
function formatted_list($format,$type,$cat_parent,$global_cats)
function formatted_list($data)
{
return $this->cats->formated_list($format,$type,$cat_parent,$global_cats);
return $this->cats->formatted_list($data);
}
function delete($data)

View File

@ -341,9 +341,9 @@
}
$GLOBALS['phpgw']->template->set_var('category_list',$this->bo->cats->formatted_list(array('format' => 'select',
'type' => $type,
'selected' => $parent,
'globals' => $global_cats)));
'type' => $type,
'selected' => $parent,
'globals' => $global_cats)));
$GLOBALS['phpgw']->template->set_var('cat_name',$values['name']);
$GLOBALS['phpgw']->template->set_var('cat_description',$values['descr']);
@ -455,7 +455,10 @@
$type = 'mains';
}
$GLOBALS['phpgw']->template->set_var('category_list',$this->bo->cats->formated_list('select',$type,$cats['parent'],$global_cats));
$GLOBALS['phpgw']->template->set_var('category_list',$this->bo->cats->formatted_list(array('format' => 'select',
'type' => $type,
'selected' => $cats['parent'],
'globals' => $global_cats)));
$GLOBALS['phpgw']->template->set_var('access',$cats['access'] == 'private'?' checked':'');