mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-08 00:54:15 +01:00
225 lines
8.0 KiB
PHP
Executable File
225 lines
8.0 KiB
PHP
Executable File
<?php
|
|
/**************************************************************************\
|
|
* phpGroupWare - Calendar *
|
|
* http://www.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$ */
|
|
|
|
$phpgw_info["flags"] = array("currentapp" => "calendar", "enable_nextmatchs_class" => True, "noappheader" => True, "noappfooter" => True);
|
|
|
|
// if(isset($submit) && $submit) {
|
|
// $phpgw_info["flags"]["noheader"] = True;
|
|
// $phpgw_info["flags"]["nonavbar"] = True;
|
|
// }
|
|
|
|
include("../header.inc.php");
|
|
|
|
function display_row($bg_color,$label,$id,$name) {
|
|
global $p;
|
|
global $phpgw;
|
|
global $phpgw_info;
|
|
|
|
$p->set_var('row_color',$bg_color);
|
|
$p->set_var('user',$name);
|
|
$rights = $phpgw->acl->get_rights($label.$id,$phpgw_info["flags"]["currentapp"]);
|
|
$p->set_var('read',$label.$phpgw_info["flags"]["currentapp"].'['.$id.']['.PHPGW_ACL_READ.']');
|
|
if ($rights & PHPGW_ACL_READ) {
|
|
$p->set_var('read_selected',' checked');
|
|
} else {
|
|
$p->set_var('read_selected','');
|
|
}
|
|
$p->set_var('add',$label.$phpgw_info["flags"]["currentapp"].'['.$id.']['.PHPGW_ACL_ADD.']');
|
|
if ($rights & PHPGW_ACL_ADD) {
|
|
$p->set_var('add_selected',' checked');
|
|
} else {
|
|
$p->set_var('add_selected','');
|
|
}
|
|
$p->set_var('edit',$label.$phpgw_info["flags"]["currentapp"].'['.$id.']['.PHPGW_ACL_EDIT.']');
|
|
if ($rights & PHPGW_ACL_EDIT) {
|
|
$p->set_var('edit_selected',' checked');
|
|
} else {
|
|
$p->set_var('edit_selected','');
|
|
}
|
|
$p->set_var('delete',$label.$phpgw_info["flags"]["currentapp"].'['.$id.']['.PHPGW_ACL_DELETE.']');
|
|
if ($rights & PHPGW_ACL_DELETE) {
|
|
$p->set_var('delete_selected',' checked');
|
|
} else {
|
|
$p->set_var('delete_selected','');
|
|
}
|
|
$p->parse('row','acl_row',True);
|
|
}
|
|
|
|
if ($submit) {
|
|
|
|
$to_remove = unserialize(urldecode($processed));
|
|
for($i=0;$i<count($to_remove);$i++) {
|
|
$phpgw->acl->remove_granted_rights($phpgw_info["flags"]["currentapp"],$to_remove[$i]);
|
|
}
|
|
// Group records
|
|
$group_variable = 'g_'.$phpgw_info["flags"]["currentapp"];
|
|
|
|
while(list($group_id,$acllist) = each($$group_variable)) {
|
|
$totalacl = 0;
|
|
while(list($acl,$permission) = each($acllist)) {
|
|
$totalacl += $acl;
|
|
}
|
|
$phpgw->acl->add($phpgw_info["flags"]["currentapp"],'g_'.$group_id,$phpgw_info["user"]["account_id"],'u',$totalacl);
|
|
}
|
|
|
|
// User records
|
|
$user_variable = 'u_'.$phpgw_info["flags"]["currentapp"];
|
|
|
|
while(list($user_id,$acllist) = each($$user_variable)) {
|
|
$totalacl = 0;
|
|
while(list($acl,$permission) = each($acllist)) {
|
|
$totalacl += $acl;
|
|
}
|
|
$phpgw->acl->add($phpgw_info["flags"]["currentapp"],'u_'.$user_id,$phpgw_info["user"]["account_id"],'u',$totalacl);
|
|
}
|
|
|
|
// header("Location: ".$phpgw->link($phpgw_info["server"]["webserver_url"]."/preferences/index.php"));
|
|
// $phpgw->common->phpgw_exit();
|
|
}
|
|
|
|
$groups = $phpgw->accounts->read_group_names($phpgw->info["user"]["account_id"]);
|
|
$processed = Array();
|
|
|
|
$total = 0;
|
|
|
|
if(!isset($start)) {
|
|
$start = 0;
|
|
}
|
|
|
|
if(!$start) {
|
|
$s_groups = 0;
|
|
$s_users = 0;
|
|
}
|
|
|
|
if(!isset($s_groups)) {
|
|
$s_groups = 0;
|
|
}
|
|
|
|
if(!isset($s_users)) {
|
|
$s_users = 0;
|
|
}
|
|
|
|
if(!isset($query)) {
|
|
$query = "";
|
|
}
|
|
|
|
if(!isset($maxm)) {
|
|
$maxm = $phpgw_info["user"]["preferences"]["common"]["maxmatchs"];
|
|
}
|
|
|
|
if(!isset($totalentries)) {
|
|
$totalentries = count($groups);
|
|
$db = $phpgw->db;
|
|
$db->query("SELECT count(*) FROM accounts");
|
|
$db->next_record();
|
|
$totalentries += $db->f(0);
|
|
}
|
|
|
|
$p = CreateObject('phpgwapi.Template',$phpgw_info["server"]["app_tpl"]);
|
|
$p->set_file(array('preferences' => 'preference_acl.tpl',
|
|
'row_colspan' => 'preference_colspan.tpl',
|
|
'acl_row' => 'preference_acl_row.tpl'));
|
|
|
|
$p->set_var('errors','<p><center><b>This does nothing at this time!<br>Strictly as a template for use!</b></center>');
|
|
$p->set_var('title','<p><b>'.lang($phpgw_info["flags"]["currentapp"]." preferences").' - '.lang("acl").':</b><hr><p>');
|
|
|
|
$p->set_var('action_url',$phpgw->link(''));
|
|
$p->set_var('bg_color',$phpgw_info["theme"]["th_bg"]);
|
|
$p->set_var('submit_lang',lang('submit'));
|
|
|
|
$common_hidden_vars = ' <input type="hidden" name="s_groups" value="'.$s_groups.'">'."\n"
|
|
. ' <input type="hidden" name="s_users" value="'.$s_users.'">'."\n"
|
|
. ' <input type="hidden" name="maxm" value="'.$maxm.'">'."\n"
|
|
. ' <input type="hidden" name="totalentries" value="'.$totalentries.'">'."\n"
|
|
. ' <input type="hidden" name="start" value="'.$start.'">'."\n"
|
|
. ' <input type="hidden" name="query" value="'.$query.'">'."\n";
|
|
$p->set_var('common_hidden_vars_form',$common_hidden_vars);
|
|
|
|
if(isset($query_result) && $query_result)
|
|
$common_hidden_vars .= "<input type=\"hidden\" name=\"query_result\" value=\"".$query_result."\">\n";
|
|
|
|
$p->set_var('common_hidden_vars',$common_hidden_vars);
|
|
$p->set_var(array('read_lang' => lang('Read'),
|
|
'add_lang' => lang('Add'),
|
|
'edit_lang' => lang('Edit'),
|
|
'delete_lang' => lang('Delete')));
|
|
|
|
if(intval($s_groups) <> count($groups)) {
|
|
$p->set_var('string',lang('Groups'));
|
|
$p->parse('row','row_colspan',True);
|
|
|
|
while(list(,$group) = each($groups)) {
|
|
$go = True;
|
|
if($query) {
|
|
if(!strpos(' '.$group[1].' ',$query)) {
|
|
$go = False;
|
|
}
|
|
}
|
|
if($go) {
|
|
$tr_color = $phpgw->nextmatchs->alternate_row_color($tr_color);
|
|
display_row($tr_color,'g_',$group[0],$group[1]);
|
|
$s_groups++;
|
|
$processed[] = 'g_'.$group[0];
|
|
$total++;
|
|
if($total == $maxm) break;
|
|
}
|
|
}
|
|
}
|
|
|
|
if($total <> $maxm) {
|
|
if(!is_object($db)) {
|
|
$db = $phpgw->db;
|
|
}
|
|
|
|
$db->query("select account_id, account_firstname, account_lastname, account_lid from accounts ORDER BY account_lastname, account_firstname, account_lid ".$db->limit(intval($s_users),$maxm),__LINE__,__FILE__);
|
|
$users = $db->num_rows();
|
|
if($total <> $maxm) {
|
|
if($users) {
|
|
$p->set_var('string',ucfirst(lang('Users')));
|
|
$p->parse('row','row_colspan',True);
|
|
$tr_color = $phpgw->nextmatchs->alternate_row_color($tr_color);
|
|
while($db->next_record()) {
|
|
$go = True;
|
|
if($query) {
|
|
$name = ' '.$db->f("account_firstname").' '.$db->f("account_lastname").' '.$db->f("account_lid").' ';
|
|
if(!strpos($name,$query)) {
|
|
$go = False;
|
|
}
|
|
}
|
|
if($go) {
|
|
$tr_color = $phpgw->nextmatchs->alternate_row_color($tr_color);
|
|
$id = $db->f("account_id");
|
|
display_row($tr_color,'u_',$id,$phpgw->common->grab_owner_name($id));
|
|
$s_users++;
|
|
$processed[] = 'u_'.$id;
|
|
$total++;
|
|
if($total == $maxm) break;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
$extra_parms = "&s_users=".$s_users."&s_groups=".$s_groups."&maxm=".$maxm."&totalentries=".$totalentries."&total=".($start + $total);
|
|
|
|
$p->set_var("nml",$phpgw->nextmatchs->left("",$start,$totalentries,$extra_parms));
|
|
$p->set_var("nmr",$phpgw->nextmatchs->right("",$start,$totalentries,$extra_parms));
|
|
|
|
$p->set_var("search_value",(isset($query) && $query?$query:""));
|
|
$p->set_var("search",lang("search"));
|
|
|
|
$p->set_var('processed',urlencode(serialize($processed)));
|
|
$p->pparse('out','preferences');
|
|
$phpgw->common->phpgw_footer();
|
|
?>
|