2001-01-11 10:52:33 +01:00
< ? php
2001-03-12 13:16:14 +01:00
/************************************************************************** \
2004-05-05 14:06:13 +02:00
* eGroupWare API - Categories *
2003-08-28 16:31:11 +02:00
* This file written by Joseph Engo < jengo @ phpgroupware . org > *
2002-01-13 01:39:26 +01:00
* and Bettina Gille [ ceb @ phpgroupware . org ] *
2001-03-12 13:16:14 +01:00
* Category manager *
2003-05-22 01:02:25 +02:00
* Copyright ( C ) 2000 , 2001 Joseph Engo , Bettina Gille *
* Copyright ( C ) 2002 , 2003 Bettina Gille *
2005-11-05 23:58:51 +01:00
* Reworked 11 / 2005 by RalfBecker - AT - outdoor - training . de *
2002-09-04 02:30:50 +02:00
* ------------------------------------------------------------------------ *
2004-05-05 14:06:13 +02:00
* This library is part of the eGroupWare API *
* http :// www . egroupware . org *
2001-03-12 13:16:14 +01:00
* ------------------------------------------------------------------------ *
* This library is free software ; you can redistribute it and / or modify it *
* under the terms of the GNU Lesser General Public License as published by *
* the Free Software Foundation ; either version 2.1 of the License , *
* or any later version . *
* This library is distributed in the hope that it will be useful , but *
* WITHOUT ANY WARRANTY ; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE . *
* See the GNU Lesser General Public License for more details . *
* You should have received a copy of the GNU Lesser General Public License *
* along with this library ; if not , write to the Free Software Foundation , *
* Inc . , 59 Temple Place , Suite 330 , Boston , MA 02111 - 1307 USA *
\ **************************************************************************/
2005-11-05 23:58:51 +01:00
/* $Id$ */
/**
* class to manage categories in eGroupWare
*
* @ license LGPL
2005-11-24 00:01:28 +01:00
* @ package api
2005-11-05 23:58:51 +01:00
* @ subpackage categories
*/
2001-03-12 13:16:14 +01:00
class categories
{
var $account_id ;
var $app_name ;
2007-10-07 09:00:03 +02:00
/**
* @ var egw_db
*/
2001-03-12 13:16:14 +01:00
var $db ;
var $total_records ;
2001-03-27 09:19:28 +02:00
var $grants ;
2005-11-05 23:58:51 +01:00
var $table = 'egw_categories' ;
var $cache_id2cat_data = array (); // a little bit of caching for id2name and return_single
/**
* constructor for categories class
*
2005-12-02 21:29:49 +01:00
* @ param int / string $accountid = '' account id or lid , default to current user
2005-11-05 23:58:51 +01:00
* @ param string $app_name = '' app name defaults to current app
*/
2005-12-02 21:29:49 +01:00
function categories ( $accountid = '' , $app_name = '' )
2002-01-03 18:16:56 +01:00
{
2005-11-05 23:58:51 +01:00
if ( ! $app_name ) $app_name = $GLOBALS [ 'egw_info' ][ 'flags' ][ 'currentapp' ];
2002-01-03 18:16:56 +01:00
2005-11-05 23:58:51 +01:00
$this -> account_id = ( int ) get_account_id ( $accountid );
$this -> app_name = $app_name ;
$this -> db = clone ( $GLOBALS [ 'egw' ] -> db );
$this -> db -> set_app ( 'phpgwapi' );
$this -> grants = $GLOBALS [ 'egw' ] -> acl -> get_grants ( $app_name );
2002-01-03 18:16:56 +01:00
}
2005-11-05 23:58:51 +01:00
/**
* return sql for predifined filters
*
* @ param string $type eiterh subs , mains , appandmains , appandsubs , noglobal or noglobalapp
* @ return string with sql to add to the where clause
*/
2001-03-12 13:16:14 +01:00
function filter ( $type )
{
switch ( $type )
{
2005-11-05 23:58:51 +01:00
case 'subs' : $where = 'cat_parent != 0' ; break ;
case 'mains' : $where = 'cat_parent = 0' ; break ;
case 'appandmains' : $where = 'cat_appname=' . $this -> db -> quote ( $this -> app_name ) . ' AND cat_parent = 0' ; break ;
case 'appandsubs' : $where = 'cat_appname=' . $this -> db -> quote ( $this -> app_name ) . ' AND cat_parent != 0' ; break ;
case 'noglobal' : $where = 'cat_appname != ' . $this -> db -> quote ( $this -> app_name ); break ;
case 'noglobalapp' : $where = 'cat_appname=' . $this -> db -> quote ( $this -> app_name ) . ' AND cat_owner != ' . ( int ) $this -> account_id ; break ;
2002-10-15 02:12:39 +02:00
default : return False ;
2001-03-12 13:16:14 +01:00
}
2005-11-05 23:58:51 +01:00
return $where ;
2001-03-12 13:16:14 +01:00
}
2002-01-03 18:16:56 +01:00
2005-11-05 23:58:51 +01:00
/**
* returns the total number of categories for app , subs or mains
*
* @ param $for one of either 'app' 'subs' or 'mains'
* @ return integer count of categories
*/
2001-03-12 13:16:14 +01:00
function total ( $for = 'app' )
{
switch ( $for )
{
2005-11-05 23:58:51 +01:00
case 'app' : $where = array ( 'cat_appname' => $this -> app_name ); break ;
case 'appandmains' : $where = array ( 'cat_appname' => $this -> app_name , 'cat_parent' => 0 ); break ;
case 'appandsubs' : $where = array ( 'cat_appname' => $this -> app_name , 'cat_parent != 0' ); break ;
case 'subs' : $where = 'cat_parent != 0' ; break ;
case 'mains' : $where = 'cat_parent = 0' ; break ;
2002-10-15 02:12:39 +02:00
default : return False ;
2001-03-12 13:16:14 +01:00
}
2002-01-02 00:25:54 +01:00
2005-11-05 23:58:51 +01:00
$this -> db -> select ( $this -> table , 'COUNT(*)' , $where , __LINE__ , __FILE__ );
2001-05-02 01:17:13 +02:00
2005-11-05 23:58:51 +01:00
return $this -> db -> next_record () ? $this -> db -> f ( 0 ) : 0 ;
2001-03-12 13:16:14 +01:00
}
2005-11-05 23:58:51 +01:00
/**
* return_all_children
* returns array with id ' s of all children from $cat_id and $cat_id itself !
*
* @ param $cat_id integer cat - id to search for
* @ return array of cat - id ' s
*/
2004-04-05 00:21:26 +02:00
function return_all_children ( $cat_id )
{
$all_children = array ( $cat_id );
$children = $this -> return_array ( 'subs' , 0 , False , '' , '' , '' , True , $cat_id , - 1 , 'id' );
if ( is_array ( $children ) && count ( $children ))
{
foreach ( $children as $child )
{
$all_children = array_merge ( $all_children , $this -> return_all_children ( $child [ 'id' ]));
}
}
//echo "<p>categories::return_all_children($cat_id)=(".implode(',',$all_children).")</p>\n";
return $all_children ;
}
2005-11-05 23:58:51 +01:00
/**
* return an array populated with categories
*
* @ param string $type defaults to 'all'
* @ param int $start see $limit
* @ param boolean $limit if true limited query starting with $start
* @ param string $query = '' query - pattern
* @ param string $sort = '' sort order , either defaults to 'ASC'
* @ param string $order = '' order by
* @ param boolean $globals includes the global egroupware categories or not
* @ param int $parent_id = 0 if > 0 return subcats or $parent_id
* @ param int $lastmod = - 1 if > 0 return only cats modified since then
* @ param string $column = '' if column - name given only that column is returned , not the full array with all cat - data
* @ return array or cats
*/
2003-08-28 16:31:11 +02:00
function return_array ( $type , $start , $limit = True , $query = '' , $sort = '' , $order = '' , $globals = False , $parent_id = '' , $lastmod = - 1 , $column = '' )
2001-03-12 13:16:14 +01:00
{
2002-07-03 02:55:47 +02:00
if ( $globals )
2001-03-25 07:58:28 +02:00
{
2002-07-03 02:55:47 +02:00
$global_cats = " OR cat_appname='phpgw' " ;
2001-03-25 07:58:28 +02:00
}
2001-03-12 13:16:14 +01:00
2005-11-09 07:53:51 +01:00
if (( $filter = $this -> filter ( $type ))) $filter = ' AND ' . $filter ;
2003-08-28 16:31:11 +02:00
2005-11-05 23:58:51 +01:00
if ( ! $sort ) $sort = 'ASC' ;
2001-03-12 13:16:14 +01:00
2004-07-25 03:41:37 +02:00
if ( ! empty ( $order ) && preg_match ( '/^[a-zA-Z_(), ]+$/' , $order ) && ( empty ( $sort ) || preg_match ( '/^(ASC|DESC|asc|desc)$/' , $sort )))
2001-03-12 13:16:14 +01:00
{
2005-11-05 23:58:51 +01:00
$ordermethod = 'ORDER BY ' . $order . ' ' . $sort ;
2001-03-12 13:16:14 +01:00
}
else
{
2005-11-05 23:58:51 +01:00
$ordermethod = 'ORDER BY cat_main, cat_level, cat_name ASC' ;
2001-03-12 13:16:14 +01:00
}
2003-08-28 16:31:11 +02:00
if ( $this -> account_id == '-1' )
2001-03-27 09:19:28 +02:00
{
2003-06-21 02:59:30 +02:00
$grant_cats = ' cat_owner=-1 ' ;
2001-03-27 09:19:28 +02:00
}
2001-05-02 01:17:13 +02:00
else
2001-03-27 09:19:28 +02:00
{
2002-03-13 17:30:51 +01:00
if ( is_array ( $this -> grants ))
{
2005-11-05 23:58:51 +01:00
$grant_cats = ' (cat_owner=' . $this -> account_id . " OR cat_owner=-1 OR cat_access='public' AND cat_owner IN ( " . implode ( ',' , array_keys ( $this -> grants )) . ')) ' ;
2002-03-13 17:30:51 +01:00
}
else
{
2003-06-21 02:59:30 +02:00
$grant_cats = ' cat_owner=' . $this -> account_id . ' OR cat_owner=-1 ' ;
2002-03-13 17:30:51 +01:00
}
2001-03-27 09:19:28 +02:00
}
2003-06-21 02:59:30 +02:00
if ( $parent_id > 0 )
2001-04-25 19:00:31 +02:00
{
2005-11-05 23:58:51 +01:00
$parent_filter = ' AND cat_parent=' . ( int ) $parent_id ;
2001-04-25 19:00:31 +02:00
}
2001-03-12 13:16:14 +01:00
if ( $query )
{
2005-11-05 23:58:51 +01:00
$query = $this -> db -> quote ( '%' . $query . '%' );
$querymethod = " AND (cat_name LIKE $query OR cat_description LIKE $query ) " ;
2003-05-02 01:24:09 +02:00
}
2005-11-05 23:58:51 +01:00
if ( $lastmod > 0 )
2003-05-02 01:24:09 +02:00
{
2004-04-05 00:21:26 +02:00
$querymethod .= ' AND last_mod > ' . ( int ) $lastmod ;
2001-03-12 13:16:14 +01:00
}
2001-05-02 01:17:13 +02:00
2005-11-05 23:58:51 +01:00
$where = '(cat_appname=' . $this -> db -> quote ( $this -> app_name ) . ' AND ' . $grant_cats . $global_cats . ')'
2002-01-03 18:16:56 +01:00
. $parent_filter . $querymethod . $filter ;
2003-08-28 16:31:11 +02:00
2005-11-05 23:58:51 +01:00
$this -> db -> select ( $this -> table , 'COUNT(*)' , $where , __LINE__ , __FILE__ );
2005-11-06 08:38:27 +01:00
$this -> total_records = $this -> db -> next_record () ? $this -> db -> f ( 0 ) : 0 ;
2005-11-05 23:58:51 +01:00
if ( ! $this -> total_records ) return false ;
$this -> db -> select ( $this -> table , '*' , $where , __LINE__ , __FILE__ , $limit ? ( int ) $start : false , $ordermethod );
while (( $cat = $this -> db -> row ( true , 'cat_' )))
{
$cat [ 'app_name' ] = $cat [ 'appname' ];
$this -> cache_id2cat_data [ $cat [ 'id' ]] = $cat ;
2003-08-28 16:31:11 +02:00
if ( $column )
2003-06-21 02:59:30 +02:00
{
2005-11-05 23:58:51 +01:00
$cats [] = array ( $column => isset ( $cat [ $column ]) ? $cat [ $column ] : $cat [ 'id' ]);
2003-06-21 02:59:30 +02:00
}
2003-08-28 16:31:11 +02:00
else
{
2005-11-05 23:58:51 +01:00
$cats [] = $cat ;
2003-08-28 16:31:11 +02:00
}
2003-06-21 02:59:30 +02:00
}
2003-08-28 16:31:11 +02:00
return $cats ;
2001-03-12 13:16:14 +01:00
}
2005-11-05 23:58:51 +01:00
/**
* return a sorted array populated with categories
*
* @ param int $start see $limit
* @ param boolean $limit if true limited query starting with $start
* @ param string $query = '' query - pattern
* @ param string $sort = '' sort order , either defaults to 'ASC'
* @ param string $order = '' order by
* @ param boolean $globals includes the global egroupware categories or not
* @ param int $parent_id = 0 if > 0 return subcats or $parent_id
* @ return array with cats
*/
function return_sorted_array ( $start , $limit = True , $query = '' , $sort = '' , $order = '' , $globals = False , $parent_id = 0 )
2002-01-12 05:08:35 +01:00
{
2002-07-03 02:55:47 +02:00
if ( $globals )
2002-01-12 05:08:35 +01:00
{
2002-07-03 02:55:47 +02:00
$global_cats = " OR cat_appname='phpgw' " ;
2002-01-12 05:08:35 +01:00
}
2005-11-05 23:58:51 +01:00
if ( ! $sort ) $sort = 'ASC' ;
2002-01-12 05:08:35 +01:00
2005-11-08 11:10:36 +01:00
if ( ! empty ( $order ) && preg_match ( '/^[a-zA-Z_, ]+$/' , $order ) && ( empty ( $sort ) || preg_match ( '/^(ASC|DESC|asc|desc)$/' , $sort )))
2002-01-12 05:08:35 +01:00
{
2005-11-05 23:58:51 +01:00
$ordermethod = 'ORDER BY ' . $order . ' ' . $sort ;
2002-01-12 05:08:35 +01:00
}
else
{
$ordermethod = ' ORDER BY cat_name ASC' ;
}
2002-03-13 17:30:51 +01:00
if ( $this -> account_id == '-1' )
2002-01-12 05:08:35 +01:00
{
2003-08-28 16:31:11 +02:00
$grant_cats = " cat_owner='-1' " ;
2002-01-12 05:08:35 +01:00
}
else
{
2002-03-13 17:30:51 +01:00
if ( is_array ( $this -> grants ))
{
2005-11-05 23:58:51 +01:00
$grant_cats = " (cat_owner=' " . $this -> account_id . " ' OR cat_owner='-1' OR cat_access='public' AND cat_owner IN ( " . implode ( ',' , array_keys ( $this -> grants )) . " )) " ;
2002-03-13 17:30:51 +01:00
}
else
{
2005-11-05 23:58:51 +01:00
$grant_cats = " cat_owner=' " . $this -> account_id . " ' OR cat_owner='-1' " ;
2002-03-13 17:30:51 +01:00
}
2002-01-12 05:08:35 +01:00
}
2005-11-05 23:58:51 +01:00
$parent_select = ' AND cat_parent=' . ( int ) $parent_id ;
2002-09-03 04:21:36 +02:00
2002-01-12 05:08:35 +01:00
if ( $query )
{
2005-11-05 23:58:51 +01:00
$query = $this -> db -> quote ( '%' . $query . '%' );
$querymethod = " AND (cat_name LIKE $query OR cat_description LIKE $query ) " ;
2002-01-12 05:08:35 +01:00
}
2005-11-05 23:58:51 +01:00
$where = '(cat_appname=' . $this -> db -> quote ( $this -> app_name ) . ' AND ' . $grant_cats . $global_cats . ')' . $querymethod ;
2002-01-12 05:08:35 +01:00
2005-11-24 00:01:28 +01:00
$parents = $cats = array ();
$this -> db -> select ( $this -> table , '*' , $where . $parent_select , __LINE__ , __FILE__ , false , $ordermethod );
2005-11-05 23:58:51 +01:00
while (( $cat = $this -> db -> row ( true , 'cat_' )))
2002-01-13 01:39:26 +01:00
{
2005-11-05 23:58:51 +01:00
$cat [ 'app_name' ] = $cat [ 'appname' ];
$this -> cache_id2cat_data [ $cat [ 'id' ]] = $cat ;
2005-11-24 00:01:28 +01:00
$cats [] = $cat ;
$parents [] = $cat [ 'id' ];
2002-01-13 01:39:26 +01:00
}
2005-11-24 00:01:28 +01:00
while ( count ( $parents ))
2002-01-13 01:39:26 +01:00
{
2005-11-24 00:01:28 +01:00
$sub_select = ' AND cat_parent IN (' . implode ( ',' , $parents ) . ')' ;
$parents = $children = array ();
2005-11-05 23:58:51 +01:00
$this -> db -> select ( $this -> table , '*' , $where . $sub_select , __LINE__ , __FILE__ , false , $ordermethod );
while (( $cat = $this -> db -> row ( true , 'cat_' )))
2003-08-28 16:31:11 +02:00
{
2005-11-05 23:58:51 +01:00
$cat [ 'app_name' ] = $cat [ 'appname' ];
$this -> cache_id2cat_data [ $cat [ 'id' ]] = $cat ;
2005-11-24 00:01:28 +01:00
$parents [] = $cat [ 'id' ];
$children [ $cat [ 'parent' ]][] = $cat ;
}
// sort the cats into the mains
if ( count ( $children ))
{
$cats2 = $cats ;
$cats = array ();
foreach ( $cats2 as $cat )
{
$cats [] = $cat ;
if ( isset ( $children [ $cat [ 'id' ]]))
{
foreach ( $children [ $cat [ 'id' ]] as $child )
{
$cats [] = $child ;
}
}
}
2002-01-12 05:08:35 +01:00
}
}
2005-11-24 00:01:28 +01:00
$this -> total_records = count ( $cats );
if ( $limit )
{
return array_slice ( $cats ,( int ) $start , $GLOBALS [ 'egw_info' ][ 'user' ][ 'preferences' ][ 'common' ][ 'maxmatchs' ]);
}
2002-01-12 05:08:35 +01:00
return $cats ;
}
2005-11-05 23:58:51 +01:00
/**
* read a single category
*
* We use a shared cache together with id2name
*
* @ param int $id id of category
2005-11-06 10:09:05 +01:00
* @ return array / boolean array with one array of cat - data or false if cat not found
2005-11-05 23:58:51 +01:00
*/
2003-08-28 16:31:11 +02:00
function return_single ( $id = '' )
2001-03-12 13:16:14 +01:00
{
2005-11-05 23:58:51 +01:00
if ( ! isset ( $this -> cache_id2cat_data [ $id ]))
2003-08-28 16:31:11 +02:00
{
2005-11-05 23:58:51 +01:00
$this -> db -> select ( $this -> table , '*' , array ( 'cat_id' => $id ), __LINE__ , __FILE__ );
if (( $cat = $this -> db -> row ( true , 'cat_' )))
{
$cat [ 'app_name' ] = $cat [ 'appname' ];
}
$this -> cache_id2cat_data [ $id ] = $cat ;
2003-08-28 16:31:11 +02:00
}
2005-11-06 10:09:05 +01:00
return $this -> cache_id2cat_data [ $id ] ? array ( $this -> cache_id2cat_data [ $id ]) : false ;
2001-03-12 13:16:14 +01:00
}
2001-05-23 22:19:23 +02:00
2005-11-05 23:58:51 +01:00
/**
* return into a select box , list or other formats
*
* @ param string / array $format string 'select' or 'list' , or array with all params
* @ param string $type = '' subs or mains
* @ param int / array $selected - cat_id or array with cat_id values
* @ param boolean $globals True or False , includes the global egroupware categories or not
* @ return string populated with categories
*/
2003-08-28 16:31:11 +02:00
function formatted_list ( $format , $type = '' , $selected = '' , $globals = False , $site_link = 'site' )
2001-03-12 13:16:14 +01:00
{
2001-12-29 20:31:52 +01:00
if ( is_array ( $format ))
{
2003-08-28 16:31:11 +02:00
$type = ( $format [ 'type' ] ? $format [ 'type' ] : 'all' );
$selected = ( isset ( $format [ 'selected' ]) ? $format [ 'selected' ] : '' );
$self = ( isset ( $format [ 'self' ]) ? $format [ 'self' ] : '' );
$globals = ( isset ( $format [ 'globals' ]) ? $format [ 'globals' ] : True );
$site_link = ( isset ( $format [ 'site_link' ]) ? $format [ 'site_link' ] : 'site' );
2005-11-05 23:58:51 +01:00
$format = $format [ 'format' ] ? $format [ 'format' ] : 'select' ;
2001-12-29 20:31:52 +01:00
}
2002-01-03 18:16:56 +01:00
2001-05-23 22:19:23 +02:00
if ( ! is_array ( $selected ))
{
$selected = explode ( ',' , $selected );
2001-06-06 05:17:45 +02:00
}
2001-03-12 13:16:14 +01:00
2002-01-12 05:08:35 +01:00
if ( $type != 'all' )
2001-03-12 13:16:14 +01:00
{
2005-11-05 23:58:51 +01:00
$cats = $this -> return_array ( $type , 0 , False , '' , '' , '' , $globals );
2002-01-12 05:08:35 +01:00
}
else
{
2005-11-05 23:58:51 +01:00
$cats = $this -> return_sorted_array ( 0 , False , '' , '' , '' , $globals );
2002-01-12 05:08:35 +01:00
}
2001-03-27 05:40:18 +02:00
2005-11-05 23:58:51 +01:00
if ( ! $cats ) return '' ;
2003-06-24 15:32:25 +02:00
if ( $self )
{
2005-11-05 23:58:51 +01:00
foreach ( $cats as $key => $cat )
2003-06-24 15:32:25 +02:00
{
2005-11-05 23:58:51 +01:00
if ( $cat [ 'id' ] == $self )
2003-06-24 15:32:25 +02:00
{
2005-11-05 23:58:51 +01:00
unset ( $cats [ $key ]);
2003-06-24 15:32:25 +02:00
}
}
}
2005-11-05 23:58:51 +01:00
switch ( $format )
2002-01-12 05:08:35 +01:00
{
2005-11-05 23:58:51 +01:00
case 'select' :
foreach ( $cats as $cat )
2002-01-12 05:08:35 +01:00
{
2005-11-05 23:58:51 +01:00
$s .= '<option value="' . $cat [ 'id' ] . '"' ;
if ( in_array ( $cat [ 'id' ], $selected ))
{
$s .= ' selected="selected"' ;
}
$s .= '>' . str_repeat ( ' ' , $cat [ 'level' ]);
$s .= $GLOBALS [ 'egw' ] -> strip_html ( $cat [ 'name' ]);
2005-11-12 00:05:35 +01:00
if ( $cat [ 'app_name' ] == 'phpgw' || $cat [ 'owner' ] == '-1' )
2005-11-05 23:58:51 +01:00
{
2005-11-12 00:05:35 +01:00
$s .= ' ♦' ;
2005-11-05 23:58:51 +01:00
}
$s .= '</option>' . " \n " ;
2002-03-13 05:16:46 +01:00
}
2005-11-05 23:58:51 +01:00
break ;
case 'list' :
$space = ' ' ;
2001-05-01 04:15:13 +02:00
2005-11-05 23:58:51 +01:00
$s = '<table border="0" cellpadding="2" cellspacing="2">' . " \n " ;
2001-05-02 01:17:13 +02:00
2005-11-05 23:58:51 +01:00
foreach ( $cats as $cat )
2001-05-15 02:00:49 +02:00
{
2001-06-07 09:44:26 +02:00
$image_set = ' ' ;
2001-05-02 01:17:13 +02:00
2005-11-05 23:58:51 +01:00
if ( in_array ( $cat [ 'id' ], $selected ))
2001-06-07 09:44:26 +02:00
{
2005-11-05 23:58:51 +01:00
$image_set = '<img src="' . EGW_IMAGES_DIR . '/roter_pfeil.gif">' ;
2001-06-07 09:44:26 +02:00
}
2005-11-05 23:58:51 +01:00
if (( $cat [ 'level' ] == 0 ) && ! in_array ( $cat [ 'id' ], $selected ))
2001-06-07 09:44:26 +02:00
{
2005-11-05 23:58:51 +01:00
$image_set = '<img src="' . EGW_IMAGES_DIR . '/grauer_pfeil.gif">' ;
2001-06-07 09:44:26 +02:00
}
2005-11-05 23:58:51 +01:00
$space_set = str_repeat ( $space , $cat [ 'level' ]);
2001-06-07 09:44:26 +02:00
$s .= '<tr>' . " \n " ;
$s .= '<td width="8">' . $image_set . '</td>' . " \n " ;
2005-11-05 23:58:51 +01:00
$s .= '<td>' . $space_set . '<a href="' . $GLOBALS [ 'egw' ] -> link ( $site_link , 'cat_id=' . $cat [ 'id' ]) . '">'
. $GLOBALS [ 'egw' ] -> strip_html ( $cat [ 'name' ])
2001-12-11 02:20:45 +01:00
. '</a></td>' . " \n "
. '</tr>' . " \n " ;
2001-06-07 09:44:26 +02:00
}
2005-11-05 23:58:51 +01:00
$s .= '</table>' . " \n " ;
break ;
2001-05-15 02:00:49 +02:00
}
2005-11-05 23:58:51 +01:00
return $s ;
}
2001-07-19 01:50:38 +02:00
2005-11-05 23:58:51 +01:00
/**
* add a category
*
* @ param array $value cat - data
* @ return int new cat - id
*/
2002-10-12 19:23:56 +02:00
function add ( $values )
2001-03-12 13:16:14 +01:00
{
2005-11-05 23:58:51 +01:00
if (( int ) $values [ 'parent' ] > 0 )
2001-04-28 00:50:02 +02:00
{
2003-08-28 16:31:11 +02:00
$values [ 'level' ] = $this -> id2name ( $values [ 'parent' ], 'level' ) + 1 ;
2004-05-24 11:29:30 +02:00
$values [ 'main' ] = $this -> id2name ( $values [ 'parent' ], 'main' );
2001-04-28 00:50:02 +02:00
}
2007-12-11 10:29:50 +01:00
$values = array_merge (
array (
'app_name' => $this -> app_name ,
'access' => 'public' ,
),
$values );
2005-11-05 23:58:51 +01:00
$this -> db -> insert ( $this -> table , array (
'cat_parent' => $values [ 'parent' ],
'cat_owner' => $this -> account_id ,
'cat_access' => $values [ 'access' ],
2007-12-11 10:29:50 +01:00
'cat_appname' => $values [ 'app_name' ],
2005-11-05 23:58:51 +01:00
'cat_name' => $values [ 'name' ],
'cat_description' => $values [ 'descr' ],
'cat_data' => $values [ 'data' ],
'cat_main' => $values [ 'main' ],
'cat_level' => $values [ 'level' ],
'last_mod' => time (),
),( int ) $values [ 'id' ] > 0 ? array ( 'cat_id' => $values [ 'id' ]) : array (), __LINE__ , __FILE__ );
2001-04-28 00:50:02 +02:00
2005-11-05 23:58:51 +01:00
$id = ( int ) $values [ 'id' ] > 0 ? ( int ) $values [ 'id' ] : $this -> db -> get_last_insert_id ( $this -> table , 'cat_id' );
2003-08-28 16:31:11 +02:00
2005-11-05 23:58:51 +01:00
if ( ! ( int ) $values [ 'parent' ])
2003-08-28 16:31:11 +02:00
{
2005-11-05 23:58:51 +01:00
$this -> db -> update ( $this -> table , array ( 'cat_main' => $id ), array ( 'cat_id' => $id ), __LINE__ , __FILE__ );
2003-08-28 16:31:11 +02:00
}
2005-11-05 23:58:51 +01:00
return $id ;
2001-03-12 13:16:14 +01:00
}
2001-07-19 01:50:38 +02:00
2005-11-05 23:58:51 +01:00
/**
* delete a category
*
* @ param int $cat_id category id
* @ param boolean $drop_subs = false if true delete sub - cats too
* @ param boolean $modify_subs = false if true make the subs owned by the parent of $cat_id
*/
2003-08-28 16:31:11 +02:00
function delete ( $cat_id , $drop_subs = False , $modify_subs = False )
{
if ( $modify_subs )
{
$new_parent = $this -> id2name ( $cat_id , 'parent' );
2002-09-25 06:02:03 +02:00
2005-11-05 23:58:51 +01:00
foreach (( array ) $this -> return_sorted_array ( '' , False , '' , '' , '' , False , $cat_id ) as $cat )
2003-08-28 16:31:11 +02:00
{
2005-11-05 23:58:51 +01:00
if ( $cat [ 'level' ] == 1 )
2003-08-28 16:31:11 +02:00
{
2005-11-05 23:58:51 +01:00
$this -> db -> update ( $this -> table , array (
'cat_level' => 0 ,
'cat_parent' => 0 ,
'cat_main' => $cat [ 'id' ],
), array (
'cat_id' => $cat [ 'id' ],
'cat_appname' => $this -> app_name ,
), __LINE__ , __FILE__ );
$new_main = $cat [ 'id' ];
2003-08-28 16:31:11 +02:00
}
else
2002-09-03 04:21:36 +02:00
{
2005-11-05 23:58:51 +01:00
$update = array ( 'cat_level' => $cat [ 'level' ] - 1 );
if ( $new_main ) $update [ 'cat_main' ] = $new_main ;
2003-08-28 16:31:11 +02:00
2005-11-05 23:58:51 +01:00
if ( $cat [ 'parent' ] == $cat_id ) $update [ 'cat_parent' ] = $new_parent ;
2001-04-09 16:45:27 +02:00
2005-11-05 23:58:51 +01:00
$this -> db -> update ( $this -> table , $update , array (
'cat_id' => $cat [ 'id' ],
'cat_appname' => $this -> app_name ,
), __LINE__ , __FILE__ );
2003-08-28 16:31:11 +02:00
}
2002-10-12 19:23:56 +02:00
}
}
2005-11-05 23:58:51 +01:00
if ( $drop_subs )
{
$where = array ( 'cat_id=' . ( int ) $cat_id . ' OR cat_parent=' . ( int ) $cat_id . ' OR cat_main=' . ( int ) $cat_id );
}
else
{
$where [ 'cat_id' ] = $cat_id ;
}
$where [ 'cat_appname' ] = $this -> app_name ;
2002-10-12 19:23:56 +02:00
2005-11-05 23:58:51 +01:00
$this -> db -> delete ( $this -> table , $where , __LINE__ , __FILE__ );
2002-10-12 19:23:56 +02:00
}
2005-11-05 23:58:51 +01:00
/**
* edit / update a category
*
* @ param array $values array with cat - data ( it need to be complete , as everything get ' s written )
* @ return int cat - id
*/
2002-10-12 19:23:56 +02:00
function edit ( $values )
2001-03-12 13:16:14 +01:00
{
2005-11-05 23:58:51 +01:00
if ( isset ( $values [ 'old_parent' ]) && ( int ) $values [ 'old_parent' ] != ( int ) $values [ 'parent' ])
2003-08-28 16:31:11 +02:00
{
$this -> delete ( $values [ 'id' ], False , True );
2005-11-05 23:58:51 +01:00
2003-08-28 16:31:11 +02:00
return $this -> add ( $values );
2001-05-15 02:00:49 +02:00
}
2003-08-28 16:31:11 +02:00
else
2001-05-15 02:00:49 +02:00
{
2003-08-28 16:31:11 +02:00
if ( $values [ 'parent' ] > 0 )
2002-10-04 22:59:00 +02:00
{
2005-11-05 23:58:51 +01:00
$values [ 'main' ] = $this -> id2name ( $values [ 'parent' ], 'main' );
$values [ 'level' ] = $this -> id2name ( $values [ 'parent' ], 'level' ) + 1 ;
2002-10-04 22:59:00 +02:00
}
else
{
2003-08-28 16:31:11 +02:00
$values [ 'main' ] = $values [ 'id' ];
$values [ 'level' ] = 0 ;
2002-10-04 22:59:00 +02:00
}
2001-05-15 02:00:49 +02:00
}
2005-11-05 23:58:51 +01:00
$this -> db -> update ( $this -> table , array (
'cat_name' => $values [ 'name' ],
'cat_description' => $values [ 'descr' ],
'cat_data' => $values [ 'data' ],
'cat_parent' => $values [ 'parent' ],
'cat_access' => $values [ 'access' ],
'cat_main' => $values [ 'main' ],
'cat_level' => $values [ 'level' ],
'last_mod' => time (),
), array (
'cat_id' => $values [ 'id' ],
'cat_appname' => $this -> app_name ,
), __LINE__ , __FILE__ );
return ( int ) $values [ 'id' ];
2001-03-12 13:16:14 +01:00
}
2001-04-25 20:12:10 +02:00
2005-11-05 23:58:51 +01:00
/**
2007-10-07 09:00:03 +02:00
* return category id for a given name
*
* Cat ' s with the given name are returned in this order :
* - personal cats first
* - then application global categories
* - global categories
* - cat ' s of other user
2005-11-05 23:58:51 +01:00
*
* @ param string $cat_name cat - name
2007-12-20 20:13:55 +01:00
* @ param boolean $strip = false if true , strips 'X-' from category names added by some SyncML clients
2005-11-05 23:58:51 +01:00
* @ return int cat - id or 0 if not found
*/
2007-12-20 20:13:55 +01:00
function name2id ( $cat_name , $strip = false )
2001-04-25 20:12:10 +02:00
{
2005-11-05 23:58:51 +01:00
static $cache = array (); // a litle bit of caching
if ( isset ( $cache [ $cat_name ])) return $cache [ $cat_name ];
2001-12-11 02:20:45 +01:00
2007-12-11 10:29:50 +01:00
if ( $strip === true )
{
$strip = 'X-' ;
}
$cats = array ( $cat_name );
if ( isset ( $strip ) && strncmp ( $strip , $cat_name , strlen ( $strip )) == 0 )
{
$stripped_cat_name = substr ( $cat_name , strlen ( $strip ));
if ( isset ( $cache [ $stripped_cat_name ]))
{
$cache [ $cat_name ] = $cache [ $stripped_cat_name ];
return $cache [ $stripped_cat_name ];
}
$cats [] = $stripped_cat_name ;
}
$this -> db -> select ( $this -> table , array ( 'cat_name' , 'cat_id' ), array (
'cat_name' => $cats ,
'cat_appname' => array ( $this -> app_name , 'phpgw' ),
2007-10-07 09:00:03 +02:00
), __LINE__ , __FILE__ , 0 ,
2007-12-11 10:29:50 +01:00
" ORDER BY cat_name!=' $cat_name ',(CASE cat_owner WHEN " . ( int ) $this -> account_id . " THEN 1 WHEN -1 THEN 2 ELSE 3 END),cat_appname='phpgw' " ,
2007-10-07 09:00:03 +02:00
false , 1 );
2002-01-03 18:16:56 +01:00
2006-04-14 11:50:39 +02:00
if ( ! $this -> db -> next_record ()) return 0 ; // cat not found, dont cache it, as it might be created in this request
2007-12-11 10:29:50 +01:00
return $cache [ $this -> db -> f ( 'cat_name' )] = ( int ) $this -> db -> f ( 'cat_id' );
2001-04-25 20:12:10 +02:00
}
2005-11-05 23:58:51 +01:00
/**
* return category information for a given id
*
* We use a shared cache together with return_single
*
* @ param int $cat_id = 0 cat - id
2008-02-07 03:40:43 +01:00
* @ param string $item = 'name requested information, ' path ' = / delimited path of category names ( incl . parents )
2005-11-05 23:58:51 +01:00
* @ return string information or '--' if not found or ! $cat_id
*/
function id2name ( $cat_id = 0 , $item = 'name' )
2001-03-12 13:16:14 +01:00
{
2005-11-05 23:58:51 +01:00
if ( ! $cat_id ) return '--' ;
if ( ! isset ( $this -> cache_id2cat_data [ $cat_id ])) $this -> return_single ( $cat_id );
if ( ! $item ) $item = 'parent' ;
2003-08-28 16:31:11 +02:00
2008-02-07 03:40:43 +01:00
$cat = $this -> cache_id2cat_data [ $cat_id ];
if ( $item == 'path' )
2001-03-12 13:16:14 +01:00
{
2008-02-07 03:40:43 +01:00
if ( $cat [ 'parent' ])
{
return $this -> id2name ( $cat [ 'parent' ], 'path' ) . ' / ' . $cat [ 'name' ];
}
$item = 'name' ;
}
if ( $cat [ $item ])
{
return $cat [ $item ];
2001-03-12 13:16:14 +01:00
}
2005-11-05 23:58:51 +01:00
elseif ( $item == 'name' )
2001-03-12 13:16:14 +01:00
{
2005-11-05 23:58:51 +01:00
return '--' ;
2001-07-02 04:25:26 +02:00
}
2005-11-05 23:58:51 +01:00
return null ;
2001-04-25 20:12:10 +02:00
}
2005-11-05 23:58:51 +01:00
/**
* return category name for a given id
*
* @ deprecated This is only a temp wrapper , use id2name () to keep things matching across the board . ( jengo )
* @ param int $cat_id
* @ return string cat_name category name
*/
2003-08-28 16:31:11 +02:00
function return_name ( $cat_id )
{
return $this -> id2name ( $cat_id );
}
2005-11-05 23:58:51 +01:00
/**
* check if a category id and / or name exists , if id AND name are given the check is for a category with same name and different id ( ! )
*
* @ param string $type subs or mains
* @ param string $cat_name = '' category name
* @ param int $cat_id = 0 category id
* @ param int $parent = 0 category id of parent
* @ return int / boolean cat_id or false if cat not exists
*/
function exists ( $type , $cat_name = '' , $cat_id = 0 , $parent = 0 )
2001-03-12 13:16:14 +01:00
{
2005-11-05 23:58:51 +01:00
static $cache = array (); // a litle bit of caching
2001-05-15 02:00:49 +02:00
2005-11-05 23:58:51 +01:00
if ( isset ( $cache [ $type ][ $cat_name ][ $cat_id ])) return $cache [ $type ][ $cat_name ][ $cat_id ];
$where = array ( $this -> filter ( $type ));
2001-05-15 02:00:49 +02:00
2005-11-05 23:58:51 +01:00
if ( $cat_name )
2001-05-15 02:00:49 +02:00
{
2005-11-05 23:58:51 +01:00
$where [ 'cat_name' ] = $cat_name ;
if ( $cat_id ) $where [] = 'cat_id != ' . ( int ) $cat_id ;
2001-05-15 02:00:49 +02:00
}
2005-11-05 23:58:51 +01:00
elseif ( $cat_id )
2001-05-15 02:00:49 +02:00
{
2005-11-05 23:58:51 +01:00
$where [ 'cat_id' ] = $cat_id ;
2001-05-15 02:00:49 +02:00
}
2006-03-10 10:53:10 +01:00
if ( $parent ) $where [ 'cat_parent' ] = $parent ;
2001-05-15 02:00:49 +02:00
2005-11-05 23:58:51 +01:00
$this -> db -> select ( $this -> table , 'cat_id' , $where , __LINE__ , __FILE__ );
2001-05-15 02:00:49 +02:00
2005-11-05 23:58:51 +01:00
return $cache [ $type ][ $cat_name ][ $cat_id ] = $this -> db -> next_record () && $this -> db -> f ( 0 );
}
/**
* Change the owner of all cats owned by $owner to $to OR deletes them if ! $to
*
* @ param int $owner owner or the cats to delete or change
* @ param int $to = 0 new owner or 0 to delete the cats
* @ param string $app = '' if given only cats matching $app are modifed / deleted
*/
function change_owner ( $owner , $to = 0 , $app = '' )
{
$where = array ( 'cat_owner' => $owner );
if ( $app ) $where [ 'cat_appname' ] = $app ;
2001-05-15 02:00:49 +02:00
2005-11-05 23:58:51 +01:00
if (( int ) $to )
2001-05-15 02:00:49 +02:00
{
2005-11-05 23:58:51 +01:00
$this -> db -> update ( $this -> table , array ( 'cat_owner' => $to ), $where , __LINE__ , __FILE__ );
2001-05-15 02:00:49 +02:00
}
else
{
2005-11-05 23:58:51 +01:00
$this -> db -> delete ( $this -> table , $where , __LINE__ , __FILE__ );
2001-05-15 02:00:49 +02:00
}
2001-03-12 13:16:14 +01:00
}
}