Source for file dftk_ldap_base.php
Documentation is available at dftk_ldap_base.php
1 <?php 2 /* 3 4 Copyright (c)2003 DuckCorp(tm) and RtpNet(tm) 5 6 7 8 This file is part of DFTK. 9 10 DFTK is free software; you can redistribute it and/or modify 11 it under the terms of the GNU General Public License as published by 12 the Free Software Foundation; either version 2 of the License, or 13 (at your option) any later version. 14 15 DFTK is distributed in the hope that it will be useful, 16 but WITHOUT ANY WARRANTY; without even the implied warranty of 17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 18 GNU General Public License for more details. 19 20 You should have received a copy of the GNU General Public License 21 along with DFTK; if not, write to the Free Software 22 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 23 */ 24 25 26 /** 27 * @package dftk 28 * @author Duck <duck@DuckCorp.org> 29 * @author Rtp <rtp@rtp-net.org> 30 * @copyright Copyright (c)2003 DuckCorp(tm) and RtpNet(tm) 31 * @license http://www.gnu.org/licenses/gpl.html GNU General Public License 32 * @version 0.3.0 33 */ 34 35 36 /** 37 * DFTK LDAP Base Class 38 * 39 * @package dftk 40 * @subpackage dftk-ldap 41 * @author Duck <duck@DuckCorp.org> 42 * 43 * @access private 44 * @abstract 45 */ 46 class DftkLdapBase 47 { 48 /** 49 * Trace Manager 50 * 51 * @access private 52 * @var string 53 */ 54 var $_tracemgr; 55 56 /** 57 * Constructor 58 * 59 * @access public 60 * @param object DftkDaTraceManager &$tracemgr Language Manager 61 */ 62 function DftkLdapBase(&$tracemgr) 63 { 64 $this->_tracemgr =& $tracemgr; 65 66 if (!$this->_tracemgr->is_module("DFTK-LDAP")) 67 $this->_tracemgr->register_traces("DFTK-LDAP",DFTK_ROOT_PATH."/ldap/traces/"); 68 69 register_shutdown_function(array(&$this, "_DftkLdapBase")); 70 } 71 72 /** 73 * Destructor 74 * 75 * @access private 76 */ 77 function _DftkLdapBase() 78 { 79 } 80 } 81 82 ?>
|