source: trunk/admin/inc/class.boapplications.inc.php @ 2

Revision 2, 1.3 KB checked in by niltonneto, 17 years ago (diff)

Removida todas as tags usadas pelo CVS ($Id, $Source).
Primeira versão no CVS externo.

  • Property svn:eol-style set to native
  • Property svn:executable set to *
Line 
1<?php
2  /**************************************************************************\
3  * eGroupWare - administration                                              *
4  * http://www.egroupware.org                                                *
5  * --------------------------------------------                             *
6  *  This program is free software; you can redistribute it and/or modify it *
7  *  under the terms of the GNU General Public License as published by the   *
8  *  Free Software Foundation; either version 2 of the License, or (at your  *
9  *  option) any later version.                                              *
10  \**************************************************************************/
11
12
13        class boapplications
14        {
15                var $so;
16
17                function boapplications()
18                {
19                        $this->so = CreateObject('admin.soapplications');
20                }
21
22                function get_list()
23                {
24                        return $this->so->get_list();
25                }
26
27                function read($app_name)
28                {
29                        return $this->so->read($app_name);
30                }
31
32                function add($data)
33                {
34                        return $this->so->add($data);
35                }
36
37                function save($data)
38                {
39                        return $this->so->save($data);
40                }
41
42                function exists($app_name)
43                {
44                        return $this->so->exists($app_name);
45                }
46
47                function app_order()
48                {
49                        return $this->so->app_order();
50                }
51
52                function delete($app_name)
53                {
54                        return $this->so->delete($app_name);
55                }
56        }
Note: See TracBrowser for help on using the repository browser.