%PDF- %PDF-
| Direktori : /home/lightco1/www/lightingrepublic.com.au/components/com_default/databases/behaviors/ |
| Current File : /home/lightco1/www/lightingrepublic.com.au/components/com_default/databases/behaviors/lockable.php |
<?php
/**
* @version $Id$
* @package Nooku_Components
* @subpackage Default
* @copyright Copyright (C) 2007 - 2012 Johan Janssens. All rights reserved.
* @license GNU GPLv3 <http://www.gnu.org/licenses/gpl.html>
* @link http://www.nooku.org
*/
/**
* Database Lockable Behavior
*
* @author Johan Janssens <johan@nooku.org>
* @package Nooku_Components
* @subpackage Default
*/
class ComDefaultDatabaseBehaviorLockable extends KDatabaseBehaviorLockable
{
/**
* Initializes the options for the object
*
* Called from {@link __construct()} as a first step of object instantiation.
*
* @param object An optional KConfig object with configuration options
* @return void
*/
protected function _initialize(KConfig $config)
{
$config->append(array(
'lifetime' => JFactory::getSession()->getExpire()
));
parent::_initialize($config);
}
}