egroupware_official/phpgwapi/inc/class.applications.inc.php

211 lines
7.6 KiB
PHP
Raw Normal View History

2001-01-19 05:10:45 +01:00
<?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 $user_apps = Array();
var $group_apps = Array();
2001-01-19 05:10:45 +01:00
function applications($var = ""){
2001-01-27 05:23:32 +01:00
global $phpgw, $phpgw_info;
if ($var != ""){
$this->users_enabled_apps();
2001-01-19 05:10:45 +01:00
}
}
2001-01-27 04:24:53 +01:00
function users_enabled_apps()
{
global $phpgw, $phpgw_info;
2001-01-27 05:07:29 +01:00
2001-01-27 04:24:53 +01:00
if (gettype($phpgw_info["apps"]) != "array") {
$this->read_installed_apps();
}
2001-01-27 04:29:33 +01:00
while (list($app) = each($phpgw_info["apps"])) {
if ($phpgw->acl->check("run",1,$app)) {
$phpgw_info["user"]["apps"][$app] = array("title" => $phpgw_info["apps"][$app]["title"], "name" => $app, "enabled" => True, "status" => $phpgw_info["apps"][$app]["status"]);
}
}
2001-01-19 05:10:45 +01:00
}
function read_installed_apps(){
global $phpgw, $phpgw_info;
2001-01-27 05:23:32 +01:00
$phpgw->db->query("select * from applications where app_enabled != '0' order by app_order asc",__LINE__,__FILE__);
if($phpgw->db->num_rows()) {
while ($phpgw->db->next_record()) {
2001-01-27 05:07:29 +01:00
// echo "<br>TEST: " . $phpgw->db->f("app_order") . " - " . $phpgw->db->f("app_name");
$name = $phpgw->db->f("app_name");
$title = $phpgw->db->f("app_title");
$status = $phpgw->db->f("app_enabled");
$phpgw_info["apps"][$name] = array("title" => $title, "enabled" => True, "status" => $status);
2001-01-21 22:34:36 +01:00
}
}
}
2001-01-21 22:34:36 +01:00
function read_user_apps($lid ="") {
global $phpgw, $phpgw_info;
if ($lid == ""){$lid = $phpgw_info["user"]["account_id"];}
$owner_found = False;
if(gettype($lid) == "string" && $lid == $phpgw_info["user"]["user_id"]) {
$owner_id = $phpgw_info["user"]["account_id"];
$owner_found = True;
}
if($owner_found == False && gettype($lid) == "integer") {
$owner_id = $lid;
$owner_found = True;
} elseif($owner_found == False && gettype($lid) == "string") {
$phpgw->db->query("SELECT account_id FROM accounts WHERE account_lid='".$lid."'",__LINE__,__FILE__);
if($phpgw->db->num_rows()) {
$phpgw->db->next_record();
$owner_id = $phpgw->db->f("account_id");
$owner_found = True;
2001-01-21 02:26:23 +01:00
}
2001-01-19 05:10:45 +01:00
}
if($owner_found) {
$acl_apps = $phpgw->acl->get_app_list_for_id('run', 1, 'u', $lid);
if ($acl_apps != False){
reset ($acl_apps);
while (list(,$value) = each($acl_apps)){
$apps[] = $value;
}
2001-01-21 22:34:36 +01:00
}
if(gettype($phpgw_info["apps"]) != "array") {
$this->read_installed_apps();
2001-01-21 22:34:36 +01:00
}
if(count($apps)) {
for ($i=0; $i<count($apps); $i++) {
if ($phpgw_info["apps"][$apps[$i]]["enabled"] == True) {
$this->user_apps[$owner_id][] = $apps[$i];
}
2001-01-21 22:34:36 +01:00
}
2001-01-19 05:10:45 +01:00
}
return $this->user_apps[$owner_id];
2001-01-19 05:10:45 +01:00
}
return False;
2001-01-19 05:10:45 +01:00
}
function read_group_apps($group_id) {
global $phpgw, $phpgw_info;
if(gettype($group_id) == "integer") {
$group_found = True;
} elseif(gettype($group_id) == "string") {
$phpgw->db->query("SELECT group_id FROM groups WHERE group_name='".$group_id."'",__LINE__,__FILE__);
if($phpgw->db->num_rows()) {
$phpgw->db->next_record();
$group_id = $phpgw->db->f("group_id");
$group_found = True;
}
}
if($group_found) {
$acl_apps = $phpgw->acl->get_app_list_for_id('run', 1, 'g', $group_id);
if ($acl_apps != False){
reset ($acl_apps);
while (list(,$value) = each($acl_apps)){
$apps[] = $value;
}
}
if(gettype($phpgw_info["apps"]) != "array") {
$this->read_installed_apps();
}
if(count($apps)) {
for ($i=0;$i<count($apps);$i++) {
if ($phpgw_info["apps"][$apps[$i]]["enabled"] == True) {
$this->group_apps[$group_id][] = $apps[$i];
}
}
}
return $this->group_apps[$group_id];
2001-01-21 02:26:23 +01:00
}
return False;
2001-01-19 05:10:45 +01:00
}
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;
2001-01-21 02:26:23 +01:00
}
2001-01-19 05:10:45 +01:00
}
function add_group_app($apps, $group_id) {
if(gettype($appname) == "array") {
2001-01-21 02:26:23 +01:00
while($app = each($appname)) {
$this->group_apps[$group_id][] = $app[0];
2001-01-21 02:26:23 +01:00
}
} elseif(gettype($appname) == "string") {
$this->group_apps[$group_id][] = $appname;
2001-01-21 02:26:23 +01:00
}
}
function add_user_app($appname, $user_id = "") {
global $phpgw, $phpgw_info;
if ($user_id == ""){$user_id = $phpgw_info["user"]["account_id"];}
if(gettype($appname) == "array") {
2001-01-21 02:26:23 +01:00
while($app = each($appname)) {
$this->user_apps[$user_id][] = $app[0];
2001-01-21 02:26:23 +01:00
}
} elseif(gettype($appname) == "string") {
$this->user_apps[$user_id][] = $appname;
2001-01-19 05:10:45 +01:00
}
}
function delete_group_app($appname, $group_id) {
unset($this->group_apps[$group_id][$appname]);
2001-01-19 05:10:45 +01:00
}
function delete_user_app($appname, $user_id = ""){
global $phpgw, $phpgw_info;
if ($user_id == ""){$user_id = $phpgw_info["user"]["account_id"];}
unset($this->group_apps[$user_id][$appname]);
2001-01-19 05:10:45 +01:00
}
function save_group_apps($group_id){
global $phpgw, $phpgw_info;
2001-01-19 05:10:45 +01:00
if($group_id) {
$phpgw->acl->delete("%", "run", "g", $group_id);
2001-01-21 22:34:36 +01:00
reset($this->group_apps[$group_id]);
while($app = each($this->group_apps[$group_id])) {
$phpgw->acl->add($app[1],'run',$group_id,'g',1);
2001-01-21 22:34:36 +01:00
}
2001-01-19 14:16:30 +01:00
}
2001-01-19 05:10:45 +01:00
}
function save_user_apps($user_id = ""){
global $phpgw, $phpgw_info;
if ($user_id == ""){$user_id = $phpgw_info["user"]["account_id"];}
if($user_id) {
$phpgw->acl->delete("%", "run", "u", $user_id);
2001-01-21 22:34:36 +01:00
reset($this->user_apps);
while($app = each($this->user_apps[$user_id])) {
$phpgw->acl->add($app[1],'run',$user_id,'u',1);
2001-01-21 22:34:36 +01:00
}
2001-01-19 05:10:45 +01:00
}
}
}
2001-01-27 05:07:29 +01:00
?>