本文整理汇总了PHP中CopixTpl::assignZone方法的典型用法代码示例。如果您正苦于以下问题:PHP CopixTpl::assignZone方法的具体用法?PHP CopixTpl::assignZone怎么用?PHP CopixTpl::assignZone使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类CopixTpl
的用法示例。
在下文中一共展示了CopixTpl::assignZone方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: processGetInformation
/**
* Affichage d'un message d'information
*/
public function processGetInformation()
{
$tpl = new CopixTpl();
$tpl->assign('TITLE_PAGE', _request('TITLE_PAGE', _i18n('messages.titlePage.information')));
$tpl->assignZone('MAIN', 'PassThrough', array('message' => _request('message'), 'back' => _request('continue'), 'template' => 'messages.information.tpl'));
return new CopixActionReturn(CopixActionReturn::DISPLAY, $tpl);
}
示例2: processSelectPage
public function processSelectPage()
{
$tpl = new CopixTpl();
$tpl->assign('TITLE_PAGE', CopixI18N::get('htmleditor.title.pageSelect'));
$tpl->assignZone('MAIN', 'htmleditor|SelectPage', array('onlyLastVersion' => 1, 'editorName' => CopixRequest::get('editorName', null, true), 'popup' => CopixRequest::get('popup', null, true)));
return new CopixActionReturn(CopixActionReturn::DISPLAY_IN, $tpl, '|blank.tpl');
}
示例3: processManageWebservices
/**
* Affiche la liste des classes exportables
*
* @return CopixActionReturn
*/
public function processManageWebservices()
{
$tpl = new CopixTpl();
$tpl->assign('TITLE_PAGE', _i18n('wsserver.title.manageWebServices'));
$tpl->assignZone('MAIN', 'wsserver|customizedinstall');
return _arDisplay($tpl);
}
示例4: processDefault
/**
* Ecran par défaut
*/
public function processDefault()
{
$tpl = new CopixTpl();
$tpl->assign('TITLE_BAR', CopixI18N::get('params.title'));
$choiceModule = CopixRequest::get('choiceModule', false, true);
$editParam = CopixRequest::get('editParam', false, true);
$tpl->assign('TITLE_PAGE', CopixI18N::get('params.titlePage.admin'));
$tpl->assignZone('MAIN', 'ShowParams', array('choiceModule' => $choiceModule, 'editParam' => $editParam));
return _arDisplay($tpl);
}
示例5: processManageModules
/**
* Affiche la liste des modules installables / désinstallables
*/
public function processManageModules()
{
$tpl = new CopixTpl();
$tpl->assign('TITLE_PAGE', _i18n('install.title.manageModules'));
$tpl->assignZone('MAIN', 'admin|customisedInstall');
return _arDisplay($tpl);
}