egroupware/preferences/inc/class.bocategories.inc.php

158 lines
4.1 KiB
PHP
Raw Normal View History

2002-01-12 05:09:56 +01:00
<?php
/**************************************************************************\
* phpGroupWare - Preferences - categories *
* http://www.phpgroupware.org *
* Written by Bettina Gille [ceb@phpgroupware.org] *
* ----------------------------------------------- *
* This program is free software; you can redistribute it and/or modify it *
* under the terms of the GNU General Public License as published by the *
* Free Software Foundation; either version 2 of the License, or (at your *
* option) any later version. *
\**************************************************************************/
/* $Id$ */
class bocategories
{
var $cats;
var $start;
var $query;
var $sort;
var $order;
function bocategories($cats_app='')
2002-01-12 05:09:56 +01:00
{
$this->cats = CreateObject('phpgwapi.categories');
2002-06-18 03:13:43 +02:00
$this->cats->app_name = $cats_app;
2002-01-12 05:09:56 +01:00
$this->read_sessiondata($cats_app);
$start = $GLOBALS['HTTP_POST_VARS']['start'] ? $GLOBALS['HTTP_POST_VARS']['start'] : $GLOBALS['HTTP_GET_VARS']['start'];
$query = $GLOBALS['HTTP_POST_VARS']['query'] ? $GLOBALS['HTTP_POST_VARS']['query'] : $GLOBALS['HTTP_GET_VARS']['query'];
$sort = $GLOBALS['HTTP_POST_VARS']['sort'] ? $GLOBALS['HTTP_POST_VARS']['sort'] : $GLOBALS['HTTP_GET_VARS']['sort'];
$order = $GLOBALS['HTTP_POST_VARS']['order'] ? $GLOBALS['HTTP_POST_VARS']['order'] : $GLOBALS['HTTP_GET_VARS']['order'];
2002-01-12 05:09:56 +01:00
if(!empty($start) || $start == '0' || $start == 0)
{
$this->start = $start;
}
if((empty($query) && !empty($this->query)) || !empty($query))
{
$this->query = $query;
}
if(isset($sort) && !empty($sort))
{
$this->sort = $sort;
}
if(isset($order) && !empty($order))
{
$this->order = $order;
}
}
function save_sessiondata($data, $cats_app)
{
$colum = $cats_app . '_cats';
$GLOBALS['phpgw']->session->appsession('session_data',$column,$data);
}
function read_sessiondata($cats_app)
{
$colum = $cats_app . '_cats';
$data = $GLOBALS['phpgw']->session->appsession('session_data',$column);
$this->start = $data['start'];
$this->query = $data['query'];
$this->sort = $data['sort'];
$this->order = $data['order'];
2002-01-12 05:09:56 +01:00
}
2002-01-13 23:35:54 +01:00
function get_list($global_cats)
2002-01-12 05:09:56 +01:00
{
2002-01-13 23:35:54 +01:00
return $this->cats->return_sorted_array($this->start,True,$this->query,$this->sort,$this->order,$global_cats);
2002-01-12 05:09:56 +01:00
}
function save_cat($values)
{
if ($values['access'])
{
$values['access'] = 'private';
}
else
{
$values['access'] = 'public';
}
if ($values['id'] && $values['id'] != 0)
2002-01-12 05:09:56 +01:00
{
return $this->cats->edit($values);
}
else
{
return $this->cats->add($values);
}
}
function exists($data)
{
$data['type'] = $data['type'] ? $data['type'] : '';
$data['cat_id'] = $data['cat_id'] ? $data['cat_id'] : '';
return $this->cats->exists($data['type'],$data['cat_name'],$data['cat_id']);
2002-01-12 05:09:56 +01:00
}
function formatted_list($format,$type,$cat_parent,$global_cats)
2002-01-12 05:09:56 +01:00
{
return $this->cats->formated_list($format,$type,$cat_parent,$global_cats);
2002-01-12 05:09:56 +01:00
}
function delete($cat_id,$subs)
2002-01-12 05:09:56 +01:00
{
return $this->cats->delete($cat_id,$subs,!$subs); // either delete the subs or modify them
2002-01-12 05:09:56 +01:00
}
2002-01-12 19:28:42 +01:00
function check_values($values)
2002-01-12 05:09:56 +01:00
{
if (strlen($values['descr']) >= 255)
{
$error[] = lang('Description can not exceed 255 characters in length !');
}
if (!$values['name'])
{
$error[] = lang('Please enter a name');
}
else
{
2002-01-14 00:31:03 +01:00
if (!$values['parent'])
2002-01-12 05:09:56 +01:00
{
$exists = $this->exists(array
(
'type' => 'appandmains',
'cat_name' => $values['name'],
'cat_id' => $values['id']
2002-01-12 05:09:56 +01:00
));
}
else
{
$exists = $this->exists(array
(
'type' => 'appandsubs',
'cat_name' => $values['name'],
'cat_id' => $values['id']
2002-01-12 05:09:56 +01:00
));
}
if ($exists == True)
{
2002-01-14 00:31:03 +01:00
$error[] = lang('This name has been used already');
2002-01-12 05:09:56 +01:00
}
}
if (is_array($error))
{
return $error;
}
}
}