source: companies/celepar/jabberit_messenger/inc/class.bomodule.inc.php @ 763

Revision 763, 1.2 KB checked in by niltonneto, 15 years ago (diff)

Importação inicial do Expresso da Celepar

Line 
1<?php
2  /***************************************************************************\
3  *  Expresso - Expresso Messenger                                            *
4  *     - Alexandre Correia / Rodrigo Souza                                                               *
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
12require_once "class.db_im.inc.php";
13require_once "jabberit_sessions.inc.php";
14
15class bomodule
16{
17        private $db;
18       
19        function __construct()
20        {
21                $this->db = new db_im();
22        }
23       
24        public final function getApplicationsEnabled()
25        {
26                return $this->db->getApplicationsEnabled();
27        }
28       
29        public final function getApplicationsList()
30        {
31                return $this->db->getApplicationsList();
32        }
33       
34        public final function setApplications($Applications)
35        {
36                return $this->db->setApplications($Applications);
37        }
38}
39
40?>
Note: See TracBrowser for help on using the repository browser.