source: branches/2.2/jabberit_messenger/inc/class.bojmessenger.inc.php @ 3102

Revision 3102, 593 bytes checked in by amuller, 14 years ago (diff)

Ticket #986 - Efetuado merge para o Branch 2.2( atualizacao do modulo)

  • Property svn:executable set to *
Line 
1<?php
2
3require_once "class.db_im.inc.php";
4require_once "class.ldap_im.inc.php";
5require_once "jabberit_sessions.inc.php";
6
7class bojmessenger
8{
9        private $db;
10        private $ldap;
11
12        function __construct()
13        {
14                $this->db       = new db_im();
15                $this->ldap = new ldap_im();
16        }
17       
18        public final function getGroupsJmessenger()
19        {
20                return $this->db->getGroupsJmessenger();
21        }
22       
23        public final function getOrganizationsLdap($pHost)
24        {
25                return $this->ldap->getOrganizationsLdap($pHost);                               
26        }
27       
28        public final function setAddGroupsJmessenger($pData)
29        {
30                $this->db->setAddGroupsJmessenger($pData);             
31        }
32       
33}
34
35?>
Note: See TracBrowser for help on using the repository browser.