mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-08 09:04:53 +01:00
4e1cd7d1f5
- allows to parse arguments ot the hook and return content - all access to the hook-table is now handled by the hook-class (for admin and setup too) - all existing hooks continue to work of cause
58 lines
1.3 KiB
PHP
58 lines
1.3 KiB
PHP
<?php
|
|
/**************************************************************************\
|
|
* phpGroupWare - administration *
|
|
* 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$ */
|
|
|
|
class boapplications
|
|
{
|
|
var $so;
|
|
|
|
function boapplications()
|
|
{
|
|
$this->so = CreateObject('admin.soapplications');
|
|
}
|
|
|
|
function get_list()
|
|
{
|
|
return $this->so->get_list();
|
|
}
|
|
|
|
function read($app_name)
|
|
{
|
|
return $this->so->read($app_name);
|
|
}
|
|
|
|
function add($data)
|
|
{
|
|
return $this->so->add($data);
|
|
}
|
|
|
|
function save($data)
|
|
{
|
|
return $this->so->save($data);
|
|
}
|
|
|
|
function exists($app_name)
|
|
{
|
|
return $this->so->exists($app_name);
|
|
}
|
|
|
|
function app_order()
|
|
{
|
|
return $this->so->app_order();
|
|
}
|
|
|
|
function delete($app_name)
|
|
{
|
|
return $this->so->delete($app_name);
|
|
}
|
|
}
|