egroupware_official/emailadmin/inc/class.ajaxemailadmin.inc.php
2007-04-15 16:29:13 +00:00

75 lines
2.5 KiB
PHP

<?php
/***************************************************************************\
* eGroupWare - EmailAdmin *
* http://www.linux-at-work.de *
* http://www.egroupware.org *
* Written by : Lars Kneschke [lkneschke@linux-at-work.de] *
* ------------------------------------------------- *
* This program is free software; you can redistribute it and/or modify it *
* under the terms of the GNU General Public License version 2 as published *
* by the Free Software Foundation. *
\***************************************************************************/
/* $Id$ */
class ajaxemailadmin
{
function ajaxemailadmin()
{
$this->bo =& CreateObject('emailadmin.bo');
/* $this->bofelamimail =& CreateObject('felamimail.bofelamimail',$GLOBALS['egw']->translation->charset());
$this->uiwidgets =& CreateObject('felamimail.uiwidgets');
$this->bofelamimail->openConnection();
$this->sessionDataAjax = $GLOBALS['egw']->session->appsession('ajax_session_data');
$this->sessionData = $GLOBALS['egw']->session->appsession('session_data');
if(!isset($this->sessionDataAjax['folderName']))
$this->sessionDataAjax['folderName'] = 'INBOX';
$this->bofelamimail->openConnection($this->sessionDataAjax['folderName']);*/
}
function setOrder($_order)
{
$i = 0;
$order = explode(',',$_order);
foreach($order as $profileIDString)
{
// remove profile_ and just use the number
$profileID = (int)substr($profileIDString,8);
if($profileID > 0)
$newOrder[$i++] = $profileID;
}
$this->bo->setOrder($newOrder);
}
function addACL($_accountName, $_aclData)
{
if(!empty($_accountName))
{
$acl = implode('',(array)$_aclData['acl']);
$data = $this->bofelamimail->addACL($this->sessionDataAjax['folderName'], $_accountName, $acl);
#$response =& new xajaxResponse();
#$response->addScript("window.close();");
#$response->addAssign("accountName", "value", $this->sessionDataAjax['folderName'].'-'.$_accountName.'-'.$acl);
#return $response->getXML();
}
}
function updateACLView()
{
$folderACL = $this->bofelamimail->getIMAPACL($this->sessionDataAjax['folderName']);
$response =& new xajaxResponse();
$response->addAssign("aclTable", "innerHTML", $this->createACLTable($folderACL));
return $response->getXML();
}
}
?>