本文整理汇总了PHP中eZSession::triggerCallback方法的典型用法代码示例。如果您正苦于以下问题:PHP eZSession::triggerCallback方法的具体用法?PHP eZSession::triggerCallback怎么用?PHP eZSession::triggerCallback使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类eZSession
的用法示例。
在下文中一共展示了eZSession::triggerCallback方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: gc
public function gc($maxLifeTime)
{
ezpEvent::getInstance()->notify('session/gc', array($maxLifeTime));
$db = eZDB::instance();
eZSession::triggerCallback('gc_pre', array($db, $maxLifeTime));
$sfHandler = $this->storage->getSaveHandler();
if (method_exists($sfHandler, 'gc')) {
$sfHandler->gc($maxLifeTime);
}
eZSession::triggerCallback('gc_post', array($db, $maxLifeTime));
return false;
}
示例2: cleanup
/**
* Remove all session data (Truncate table)
*
* @return bool
*/
public function cleanup()
{
ezpEvent::getInstance()->notify( 'session/cleanup', array() );
$db = eZDB::instance();
eZSession::triggerCallback( 'cleanup_pre', array( $db ) );
$db->query( 'TRUNCATE TABLE ezsession' );
eZSession::triggerCallback( 'cleanup_post', array( $db ) );
return true;
}
示例3: cleanup
/**
* Remove all session data (Truncate table)
*
* @return bool
*/
public function cleanup()
{
$db = eZDB::instance();
eZSession::triggerCallback('cleanup_pre', array($db));
$db->query('TRUNCATE TABLE ezsession');
eZSession::triggerCallback('cleanup_post', array($db));
return true;
}
示例4: cleanup
/**
* reimp (not used in this handler)
*/
public function cleanup()
{
$db = eZDB::instance();
eZSession::triggerCallback('cleanup_pre', array($db));
eZSession::triggerCallback('cleanup_post', array($db));
return true;
}