[ Index ] |
|
Code source de eGroupWare 1.2.106-2 |
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 /* $Id: class.boapplications.inc.php 20295 2006-02-15 12:31:25Z $ */ 13 14 class boapplications 15 { 16 var $so; 17 18 function boapplications() 19 { 20 $this->so =& CreateObject('admin.soapplications'); 21 } 22 23 function get_list() 24 { 25 return $this->so->get_list(); 26 } 27 28 function read($app_name) 29 { 30 return $this->so->read($app_name); 31 } 32 33 function add($data) 34 { 35 return $this->so->add($data); 36 } 37 38 function save($data) 39 { 40 return $this->so->save($data); 41 } 42 43 function exists($app_name) 44 { 45 return $this->so->exists($app_name); 46 } 47 48 function app_order() 49 { 50 return $this->so->app_order(); 51 } 52 53 function delete($app_name) 54 { 55 return $this->so->delete($app_name); 56 } 57 }
titre
Description
Corps
titre
Description
Corps
titre
Description
Corps
titre
Corps
Généré le : Sun Feb 25 17:20:01 2007 | par Balluche grâce à PHPXref 0.7 |