当前位置: 首页>>代码示例>>PHP>>正文


PHP CopixTpl::assignZone方法代码示例

本文整理汇总了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);
 }
开发者ID:JVS-IS,项目名称:ICONITO-EcoleNumerique,代码行数:10,代码来源:messages.actiongroup.php

示例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');
 }
开发者ID:JVS-IS,项目名称:ICONITO-EcoleNumerique,代码行数:7,代码来源:cmshtmlareatools.actiongroup.php

示例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);
 }
开发者ID:JVS-IS,项目名称:ICONITO-EcoleNumerique,代码行数:12,代码来源:admin.actiongroup.php

示例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);
 }
开发者ID:JVS-IS,项目名称:ICONITO-EcoleNumerique,代码行数:13,代码来源:parameters.actiongroup.php

示例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);
 }
开发者ID:JVS-IS,项目名称:ICONITO-EcoleNumerique,代码行数:10,代码来源:install.actiongroup.php


注:本文中的CopixTpl::assignZone方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。