This repository has been archived on 2024-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
lnldap/classes/Model/LDAP.php
2014-02-11 11:26:11 +11:00

16 lines
394 B
PHP

<?php defined('SYSPATH') or die('No direct access allowed.');
/**
* This class provides our ORM interaction with LDAP
*
* @package Kohana/Database
* @category Models
* @author Deon George
* @copyright (c) 2013 phpLDAPadmin Development Team
* @license http://dev.phpldapadmin.org/license.html
*/
class Model_LDAP extends ORM_LDAP {
public $_reload_on_wakeup = FALSE;
}
?>