egroupware_official/phpgwapi/inc/class.applications.inc.php
2001-01-28 12:24:38 +00:00

145 lines
5.4 KiB
PHP
Executable File

<?php
/**************************************************************************\
* phpGroupWare API - Applications manager functions *
* This file written by Mark Peters <skeeter@phpgroupware.org> *
* Copyright (C) 2001 Mark Peters *
* -------------------------------------------------------------------------*
* This library is part of the phpGroupWare API *
* http://www.phpgroupware.org/api *
* ------------------------------------------------------------------------ *
* 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 *
\**************************************************************************/
/* $Id$ */
class applications
{
var $account_id;
var $account_type;
var $account_apps = Array();
var $db;
function applications($account_id = "", $account_type = "u")
{
global $phpgw, $phpgw_info;
$this->db = $phpgw->db;
if ($account_id == ""){
$this->account_id = $phpgw_info["user"]["account_id"];
}elseif (is_long($account_id)) {
$this->account_id = $account_id;
} elseif(is_string($account_id)) {
$this->account_id = $phpgw->accounts->username2userid($account_id);
}
$this->account_type = $account_type;
//echo "Account ID (Initializing applications) = ".$this->account_id."<br>\n";
}
function enabled_apps()
{
global $phpgw, $phpgw_info;
if (gettype($phpgw_info["apps"]) != "array") {
$this->read_installed_apps();
}
while (list($app) = each($phpgw_info["apps"])) {
if ($this->account_type == "g") {
$check = $phpgw->acl->check_specific("run",1,$app, $this->account_id, "g");
}else{
$check = $phpgw->acl->check("run",1,$app, $this->account_id);
}
if ($check) {
$this->account_apps[$app] = array("title" => $phpgw_info["apps"][$app]["title"], "name" => $app, "enabled" => True, "status" => $phpgw_info["apps"][$app]["status"]);
}
}
return $this->account_apps;
}
function app_perms()
{
global $phpgw, $phpgw_info;
if (count($this->account_apps) == 0) {
$this->enabled_apps();
}
while (list ($key) = each ($this->account_apps)) {
$app[] = $this->account_apps[$key]["name"];
}
return $app;
}
function read_account_specific() {
global $phpgw, $phpgw_info;
if (gettype($phpgw_info["apps"]) != "array") {
$this->read_installed_apps();
}
while (list($app) = each($phpgw_info["apps"])) {
if ($phpgw->acl->check_specific("run",1,$app, $this->account_id, $this->account_type)) {
$this->account_apps[$app] = array("title" => $phpgw_info["apps"][$app]["title"], "name" => $app, "enabled" => True, "status" => $phpgw_info["apps"][$app]["status"]);
}
return $this->account_apps;
}
return False;
}
function add_app($apps) {
if(gettype($appname) == "array") {
while($app = each($appname)) {
$this->account_apps[] = $app[0];
}
} elseif(gettype($appname) == "string") {
$this->account_apps[] = $appname;
}
reset($this->account_apps);
return $this->account_apps;
}
function delete_app($appname) {
unset($this->account_apps[$appname]);
reset($this->account_apps);
return $this->account_apps;
}
function save_apps(){
global $phpgw, $phpgw_info;
$phpgw->acl->delete("%", "run", $this->account_id, $this->account_type);
reset($this->account_apps[$group_id]);
while($app = each($this->account_apps)) {
$phpgw->acl->add($app["name"],'run',$this->account_id,$this->account_type,1);
}
reset($this->account_apps);
return $this->account_apps;
}
function read_installed_apps(){
global $phpgw, $phpgw_info;
$this->db->query("select * from applications where app_enabled != '0' order by app_order asc",__LINE__,__FILE__);
if($this->db->num_rows()) {
while ($this->db->next_record()) {
$name = $this->db->f("app_name");
$title = $this->db->f("app_title");
$status = $this->db->f("app_enabled");
$phpgw_info["apps"][$name] = array("title" => $title, "enabled" => True, "status" => $status);
}
}
}
function is_system_enabled($appname){
if(gettype($phpgw_info["apps"]) != "array") {
$this->read_installed_apps();
}
if ($phpgw_info["apps"][$appname]["enabled"] == True) {
return True;
}else{
return False;
}
}
}
?>