mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-28 19:03:14 +01:00
Yet another change for compat
This commit is contained in:
parent
4d53018b08
commit
a23f8f23e9
@ -77,16 +77,16 @@
|
|||||||
// translate cat-ids to array with id-name pairs
|
// translate cat-ids to array with id-name pairs
|
||||||
function cats2xmlrpc($cats)
|
function cats2xmlrpc($cats)
|
||||||
{
|
{
|
||||||
if (!is_object($GLOBALS['egw']->categories))
|
if (!is_object($GLOBALS['phpgw']->categories))
|
||||||
{
|
{
|
||||||
$GLOBALS['egw']->categories = CreateObject('phpgwapi.categories');
|
$GLOBALS['phpgw']->categories = CreateObject('phpgwapi.categories');
|
||||||
}
|
}
|
||||||
$xcats = array();
|
$xcats = array();
|
||||||
foreach($cats as $cat)
|
foreach($cats as $cat)
|
||||||
{
|
{
|
||||||
if ($cat)
|
if ($cat)
|
||||||
{
|
{
|
||||||
$xcats[$cat] = stripslashes($GLOBALS['egw']->categories->id2name($cat));
|
$xcats[$cat] = stripslashes($GLOBALS['phpgw']->categories->id2name($cat));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return $xcats;
|
return $xcats;
|
||||||
@ -99,29 +99,29 @@
|
|||||||
{
|
{
|
||||||
$xcats = array();
|
$xcats = array();
|
||||||
}
|
}
|
||||||
elseif (!is_object($GLOBALS['egw']->categories))
|
elseif (!is_object($GLOBALS['phpgw']->categories))
|
||||||
{
|
{
|
||||||
$GLOBALS['egw']->categories = CreateObject('phpgwapi.categories');
|
$GLOBALS['phpgw']->categories = CreateObject('phpgwapi.categories');
|
||||||
}
|
}
|
||||||
$cats = array();
|
$cats = array();
|
||||||
foreach($xcats as $cat => $name)
|
foreach($xcats as $cat => $name)
|
||||||
{
|
{
|
||||||
if ($id = $GLOBALS['egw']->categories->name2id($name))
|
if ($id = $GLOBALS['phpgw']->categories->name2id($name))
|
||||||
{
|
{
|
||||||
// existing cat-name use the id
|
// existing cat-name use the id
|
||||||
$cat = $id;
|
$cat = $id;
|
||||||
}
|
}
|
||||||
elseif (!($org_name = stripslashes($GLOBALS['egw']->categories->id2name($cat))) || $org_name == '--')
|
elseif (!($org_name = stripslashes($GLOBALS['phpgw']->categories->id2name($cat))) || $org_name == '--')
|
||||||
{
|
{
|
||||||
// new cat
|
// new cat
|
||||||
$cat = $GLOBALS['egw']->categories->add(array('name' => $name,'parent' => 0));
|
$cat = $GLOBALS['phpgw']->categories->add(array('name' => $name,'parent' => 0));
|
||||||
}
|
}
|
||||||
elseif ($org_name != $name)
|
elseif ($org_name != $name)
|
||||||
{
|
{
|
||||||
// cat-name edited
|
// cat-name edited
|
||||||
list($cat_vals) =$GLOBALS['egw']->categories->return_single($cat);
|
list($cat_vals) =$GLOBALS['phpgw']->categories->return_single($cat);
|
||||||
$cat_vals['name'] = $name;
|
$cat_vals['name'] = $name;
|
||||||
$GLOBALS['egw']->categories->edit($cat_vals);
|
$GLOBALS['phpgw']->categories->edit($cat_vals);
|
||||||
}
|
}
|
||||||
$cats[] = (int)$cat;
|
$cats[] = (int)$cat;
|
||||||
}
|
}
|
||||||
@ -140,15 +140,15 @@
|
|||||||
list($app) = explode('.',$this->last_method);
|
list($app) = explode('.',$this->last_method);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!is_object($GLOBALS['egw']->categories))
|
if (!is_object($GLOBALS['phpgw']->categories))
|
||||||
{
|
{
|
||||||
$GLOBALS['egw']->categories = CreateObject('phpgwapi.categories');
|
$GLOBALS['phpgw']->categories = CreateObject('phpgwapi.categories');
|
||||||
}
|
}
|
||||||
if ($GLOBALS['egw']->categories->app_name != $app)
|
if ($GLOBALS['phpgw']->categories->app_name != $app)
|
||||||
{
|
{
|
||||||
$GLOBALS['egw']->categories->categories('',$app);
|
$GLOBALS['phpgw']->categories->categories('',$app);
|
||||||
}
|
}
|
||||||
$cats_arr = $GLOBALS['egw']->categories->return_sorted_array(0,False,'','','',True);
|
$cats_arr = $GLOBALS['phpgw']->categories->return_sorted_array(0,False,'','','',True);
|
||||||
$cats = array();
|
$cats = array();
|
||||||
if (is_array($cats_arr))
|
if (is_array($cats_arr))
|
||||||
{
|
{
|
||||||
|
@ -202,7 +202,7 @@
|
|||||||
case 'server':
|
case 'server':
|
||||||
case 'phpgwapi':
|
case 'phpgwapi':
|
||||||
/* Server role functions only - api access */
|
/* Server role functions only - api access */
|
||||||
if($GLOBALS['egw']->acl->get_role() >= PHPGW_ACL_SERVER)
|
if($GLOBALS['phpgw']->acl->get_role() >= PHPGW_ACL_SERVER)
|
||||||
{
|
{
|
||||||
$dmap = ExecMethod(sprintf('%s.%s.%s','phpgwapi',$class,'list_methods'),'xmlrpc');
|
$dmap = ExecMethod(sprintf('%s.%s.%s','phpgwapi',$class,'list_methods'),'xmlrpc');
|
||||||
}
|
}
|
||||||
@ -214,7 +214,7 @@
|
|||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
/* User-level application access */
|
/* User-level application access */
|
||||||
if($GLOBALS['egw']->acl->check('run',PHPGW_ACL_READ,$app))
|
if($GLOBALS['phpgw']->acl->check('run',PHPGW_ACL_READ,$app))
|
||||||
{
|
{
|
||||||
$dmap = ExecMethod(sprintf('',$app,$class,'list_methods'),'xmlrpc');
|
$dmap = ExecMethod(sprintf('',$app,$class,'list_methods'),'xmlrpc');
|
||||||
}
|
}
|
||||||
|
@ -94,7 +94,7 @@
|
|||||||
{
|
{
|
||||||
$payload = "<?xml version=\"1.0\"?>\n" . $this->serializeDebug() . $r->serialize();
|
$payload = "<?xml version=\"1.0\"?>\n" . $this->serializeDebug() . $r->serialize();
|
||||||
Header("Content-type: text/xml\r\nContent-length: " . strlen($payload));
|
Header("Content-type: text/xml\r\nContent-length: " . strlen($payload));
|
||||||
echo $GLOBALS['egw']->translation->convert($payload,$GLOBALS['egw']->translation->charset(),'utf-8');
|
echo $GLOBALS['phpgw']->translation->convert($payload,$GLOBALS['phpgw']->translation->charset(),'utf-8');
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($this->log)
|
if ($this->log)
|
||||||
@ -349,7 +349,7 @@
|
|||||||
$t = 'phpgwapi.' . $class . '.exec';
|
$t = 'phpgwapi.' . $class . '.exec';
|
||||||
$dmap = ExecMethod($t,array($service,'list_methods','xmlrpc'));
|
$dmap = ExecMethod($t,array($service,'list_methods','xmlrpc'));
|
||||||
}
|
}
|
||||||
elseif($GLOBALS['egw']->acl->check('run',1,$class))
|
elseif($GLOBALS['phpgw']->acl->check('run',1,$class))
|
||||||
{
|
{
|
||||||
/* This only happens if they have app access. If not, we will
|
/* This only happens if they have app access. If not, we will
|
||||||
* return a fault below.
|
* return a fault below.
|
||||||
@ -416,7 +416,7 @@
|
|||||||
// _debug_array($params);
|
// _debug_array($params);
|
||||||
$this->reqtoarray($params);
|
$this->reqtoarray($params);
|
||||||
// decode from utf-8 to our charset
|
// decode from utf-8 to our charset
|
||||||
$this->req_array = $GLOBALS['egw']->translation->convert($this->req_array,'utf-8');
|
$this->req_array = $GLOBALS['phpgw']->translation->convert($this->req_array,'utf-8');
|
||||||
//_debug_array($this->req_array);
|
//_debug_array($this->req_array);
|
||||||
if (ereg('^service',$method))
|
if (ereg('^service',$method))
|
||||||
{
|
{
|
||||||
|
@ -169,7 +169,7 @@
|
|||||||
Header('Content-type: text/xml');
|
Header('Content-type: text/xml');
|
||||||
Header('Content-length: ' . strlen($payload));
|
Header('Content-length: ' . strlen($payload));
|
||||||
print $payload;
|
print $payload;
|
||||||
$GLOBALS['egw']->common->phpgw_exit(False);
|
$GLOBALS['phpgw']->common->phpgw_exit(False);
|
||||||
}
|
}
|
||||||
|
|
||||||
// used to store state during parsing
|
// used to store state during parsing
|
||||||
@ -833,7 +833,7 @@
|
|||||||
|
|
||||||
if($server_name)
|
if($server_name)
|
||||||
{
|
{
|
||||||
list($sessionid,$kp3) = $GLOBALS['egw']->session->create_server($username.'@'.$server_name,$password,"text");
|
list($sessionid,$kp3) = $GLOBALS['phpgw']->session->create_server($username.'@'.$server_name,$password,"text");
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
@ -847,9 +847,9 @@
|
|||||||
}
|
}
|
||||||
$GLOBALS['login'] = $user;
|
$GLOBALS['login'] = $user;
|
||||||
|
|
||||||
$sessionid = $GLOBALS['egw']->session->create($user,$password,"text");
|
$sessionid = $GLOBALS['phpgw']->session->create($user,$password,"text");
|
||||||
$kp3 = $GLOBALS['egw']->session->kp3;
|
$kp3 = $GLOBALS['phpgw']->session->kp3;
|
||||||
$domain = $GLOBALS['egw']->session->account_domain;
|
$domain = $GLOBALS['phpgw']->session->account_domain;
|
||||||
}
|
}
|
||||||
|
|
||||||
if($sessionid && $kp3)
|
if($sessionid && $kp3)
|
||||||
@ -875,7 +875,7 @@
|
|||||||
$sessionid = $data['sessionid']->scalarval();
|
$sessionid = $data['sessionid']->scalarval();
|
||||||
$kp3 = $data['kp3']->scalarval();
|
$kp3 = $data['kp3']->scalarval();
|
||||||
|
|
||||||
$later = $GLOBALS['egw']->session->destroy($sessionid,$kp3);
|
$later = $GLOBALS['phpgw']->session->destroy($sessionid,$kp3);
|
||||||
|
|
||||||
if ($later)
|
if ($later)
|
||||||
{
|
{
|
||||||
@ -904,15 +904,15 @@
|
|||||||
function _xmlrpcs_listApps($server,$m)
|
function _xmlrpcs_listApps($server,$m)
|
||||||
{
|
{
|
||||||
$m->getParam(0);
|
$m->getParam(0);
|
||||||
$GLOBALS['egw']->db->query("SELECT * FROM phpgw_applications WHERE app_enabled<3",__LINE__,__FILE__);
|
$GLOBALS['phpgw']->db->query("SELECT * FROM phpgw_applications WHERE app_enabled<3",__LINE__,__FILE__);
|
||||||
if($GLOBALS['egw']->db->num_rows())
|
if($GLOBALS['phpgw']->db->num_rows())
|
||||||
{
|
{
|
||||||
while($GLOBALS['egw']->db->next_record())
|
while($GLOBALS['phpgw']->db->next_record())
|
||||||
{
|
{
|
||||||
$name = $GLOBALS['egw']->db->f('app_name');
|
$name = $GLOBALS['phpgw']->db->f('app_name');
|
||||||
$title = $GLOBALS['egw']->db->f('app_title');
|
$title = $GLOBALS['phpgw']->db->f('app_title');
|
||||||
$status = $GLOBALS['egw']->db->f('app_enabled');
|
$status = $GLOBALS['phpgw']->db->f('app_enabled');
|
||||||
$version= $GLOBALS['egw']->db->f('app_version');
|
$version= $GLOBALS['phpgw']->db->f('app_version');
|
||||||
$apps[$name] = CreateObject('phpgwapi.xmlrpcval',
|
$apps[$name] = CreateObject('phpgwapi.xmlrpcval',
|
||||||
array(
|
array(
|
||||||
'title' => CreateObject('phpgwapi.xmlrpcval',$title,'string'),
|
'title' => CreateObject('phpgwapi.xmlrpcval',$title,'string'),
|
||||||
|
Loading…
Reference in New Issue
Block a user