本文整理汇总了PHP中eZSession::getUserSessionHash方法的典型用法代码示例。如果您正苦于以下问题:PHP eZSession::getUserSessionHash方法的具体用法?PHP eZSession::getUserSessionHash怎么用?PHP eZSession::getUserSessionHash使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类eZSession
的用法示例。
在下文中一共展示了eZSession::getUserSessionHash方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: array
$tpl->setVariable('import_hour', $importHour);
$tpl->setVariable('import_minute', $importMinute);
$tpl->setVariable('import_frequency', $importFrequency);
$tpl->setVariable('import_label', $importLabel);
$tpl->setVariable('import_is_active', $importIsActive);
$tpl->setVariable('manual_frequency', $manualFrequency);
$importHandlers = $importINI->variable('ImportSettings', 'AvailableSourceHandlers');
$aValidHandlers = array();
// Check if import handlers are enabled
foreach ($importHandlers as $handler) {
$handlerSection = $handler . '-HandlerSettings';
if ($importINI->variable($handlerSection, 'Enabled') === 'true') {
$handlerName = $importINI->hasVariable($handlerSection, 'Name') ? $importINI->variable($handlerSection, 'Name') : $handler;
/*
* Policy limitations check.
* User has access to handler if it appears in $simplifiedLimitations['SQLIImport_Type']
* or if $simplifiedLimitations['SQLIImport_Type'] is not set (no limitations)
*/
if (isset($simplifiedLimitations['SQLIImport_Type']) && in_array($handler, $simplifiedLimitations['SQLIImport_Type']) || !isset($simplifiedLimitations['SQLIImport_Type'])) {
$aValidHandlers[$handlerName] = $handler;
}
}
}
$tpl->setVariable('importHandlers', $aValidHandlers);
//session vars used by file uploader
$tpl->setVariable('session_id', session_id());
$tpl->setVariable('session_name', session_name());
$tpl->setVariable('user_session_hash', eZSession::getUserSessionHash());
$Result['path'] = array(array('url' => false, 'text' => SQLIImportUtils::translate('extension/sqliimport', 'Edit a scheduled import')));
$Result['left_menu'] = 'design:sqliimport/parts/leftmenu.tpl';
$Result['content'] = $tpl->fetch('design:sqliimport/addscheduled.tpl');