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

16 lines
394 B
PHP
Raw Permalink Normal View History

2013-08-16 02:21:17 +00:00
<?php defined('SYSPATH') or die('No direct access allowed.');
/**
* This class provides our ORM interaction with LDAP
*
2014-02-11 00:26:11 +00:00
* @package Kohana/Database
* @category Models
2013-08-16 02:21:17 +00:00
* @author Deon George
* @copyright (c) 2013 phpLDAPadmin Development Team
* @license http://dev.phpldapadmin.org/license.html
*/
class Model_LDAP extends ORM_LDAP {
2014-02-07 12:34:37 +00:00
public $_reload_on_wakeup = FALSE;
2013-08-16 02:21:17 +00:00
}
?>