egroupware/phpgwapi/inc/class.applications.inc.php

180 lines
3.4 KiB
PHP
Raw Normal View History

2001-01-19 05:10:45 +01:00
<?php
2008-03-15 16:52:27 +01:00
/**
* EGroupware API - Applications
*
2008-03-15 16:52:27 +01:00
* @link http://www.egroupware.org
* @author Mark Peters <skeeter@phpgroupware.org>
* Copyright (C) 2001 Mark Peters
* @license http://opensource.org/licenses/lgpl-license.php LGPL - GNU Lesser General Public License
* @package api
* @version $Id$
*/
use EGroupware\Api;
2008-03-15 16:52:27 +01:00
/**
* functions for managing and installing apps
*
* Author: skeeter
*
* @deprecated use just methods from Api\Egw\Applications
2008-03-15 16:52:27 +01:00
*/
class applications extends Api\Egw\Applications
2008-03-15 16:52:27 +01:00
{
/**
* read from the repository
*
* pubic function that is used to determine what apps a user has rights to
*/
function read()
{
if (!count($this->data))
2001-05-02 14:40:33 +02:00
{
2008-03-15 16:52:27 +01:00
$this->read_repository();
2001-05-02 14:40:33 +02:00
}
2008-03-15 16:52:27 +01:00
return $this->data;
}
/**
* add an app to a user profile
*
* @discussion
* @param $apps array containing apps to add for a user
*/
function add($apps)
{
if(is_array($apps))
2001-05-02 14:40:33 +02:00
{
2008-03-15 16:52:27 +01:00
foreach($apps as $app)
2001-05-02 14:40:33 +02:00
{
$this->data[$app] =& $GLOBALS['egw_info']['apps'][$app];
2001-05-02 14:40:33 +02:00
}
}
2008-03-15 16:52:27 +01:00
elseif(gettype($apps))
2001-05-02 14:40:33 +02:00
{
$this->data[$apps] =& $GLOBALS['egw_info']['apps'][$apps];
2001-05-02 14:40:33 +02:00
}
2008-03-15 16:52:27 +01:00
return $this->data;
}
/**
* delete an app from a user profile
*
* @discussion
* @param $appname appname to remove
*/
function delete($appname)
{
if($this->data[$appname])
2001-05-02 14:40:33 +02:00
{
2008-03-15 16:52:27 +01:00
unset($this->data[$appname]);
2001-05-02 14:40:33 +02:00
}
2008-03-15 16:52:27 +01:00
return $this->data;
}
/**
* update the array(?)
*
* @discussion
* @param $data update the repository array(?)
*/
function update_data($data)
{
$this->data = $data;
return $this->data;
}
/**
* save the repository
*
* @discussion
*/
function save_repository()
{
$GLOBALS['egw']->acl->delete_repository("%%", 'run', $this->account_id);
foreach(array_keys($this->data) as $app)
2001-05-02 14:40:33 +02:00
{
2008-03-15 16:52:27 +01:00
if(!$this->is_system_enabled($app))
2001-05-02 14:40:33 +02:00
{
2008-03-15 16:52:27 +01:00
continue;
2001-05-02 14:40:33 +02:00
}
2008-03-15 16:52:27 +01:00
$GLOBALS['egw']->acl->add_repository($app,'run',$this->account_id,1);
2001-05-02 14:40:33 +02:00
}
2008-03-15 16:52:27 +01:00
return $this->data;
}
2001-05-02 14:40:33 +02:00
2008-03-15 16:52:27 +01:00
/**************************************************************************\
* These are the non-standard $this->account_id specific functions *
\**************************************************************************/
2008-03-15 16:52:27 +01:00
function app_perms()
{
if (!count($this->data))
2001-05-02 14:40:33 +02:00
{
2008-03-15 16:52:27 +01:00
$this->read_repository();
2001-05-02 14:40:33 +02:00
}
foreach (array_keys($this->data) as $app)
2008-03-15 16:52:27 +01:00
{
$apps[] = $this->data[$app]['name'];
}
return $apps;
}
2008-03-15 16:52:27 +01:00
function read_account_specific()
{
if (!is_array($GLOBALS['egw_info']['apps']))
2001-05-02 14:40:33 +02:00
{
2008-03-15 16:52:27 +01:00
$this->read_installed_apps();
}
if (($app_list = $GLOBALS['egw']->acl->get_app_list_for_id('run',1,$this->account_id)))
2008-03-15 16:52:27 +01:00
{
foreach($app_list as $app)
2001-05-02 14:40:33 +02:00
{
2008-03-15 16:52:27 +01:00
if ($this->is_system_enabled($app))
2001-05-02 14:40:33 +02:00
{
$this->data[$app] =& $GLOBALS['egw_info']['apps'][$app];
2001-05-02 14:40:33 +02:00
}
}
}
2008-03-15 16:52:27 +01:00
return $this->data;
}
2001-01-19 05:10:45 +01:00
2008-03-15 16:52:27 +01:00
/**
* check if an app is enabled
*
* @param $appname name of the app to check for
*/
function is_system_enabled($appname)
{
if(!is_array($GLOBALS['egw_info']['apps']))
2001-05-02 14:40:33 +02:00
{
2008-03-15 16:52:27 +01:00
$this->read_installed_apps();
2001-05-02 14:40:33 +02:00
}
2008-03-15 16:52:27 +01:00
if ($GLOBALS['egw_info']['apps'][$appname]['enabled'])
{
return True;
}
else
{
return False;
}
}
2008-03-15 16:52:27 +01:00
function id2name($id)
{
foreach($GLOBALS['egw_info']['apps'] as $appname => $app)
{
2008-03-15 16:52:27 +01:00
if((int)$app['id'] == (int)$id)
{
2008-03-15 16:52:27 +01:00
return $appname;
}
}
2008-03-15 16:52:27 +01:00
return '';
}
2004-02-03 07:25:36 +01:00
2008-03-15 16:52:27 +01:00
function name2id($appname)
{
if(is_array($GLOBALS['egw_info']['apps'][$appname]))
{
2008-03-15 16:52:27 +01:00
return $GLOBALS['egw_info']['apps'][$appname]['id'];
}
2008-03-15 16:52:27 +01:00
return 0;
2001-05-02 14:40:33 +02:00
}
2008-03-15 16:52:27 +01:00
}