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


PHP ModuleManager::current_module_manager方法代码示例

本文整理汇总了PHP中ModuleManager::current_module_manager方法的典型用法代码示例。如果您正苦于以下问题:PHP ModuleManager::current_module_manager方法的具体用法?PHP ModuleManager::current_module_manager怎么用?PHP ModuleManager::current_module_manager使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在ModuleManager的用法示例。


在下文中一共展示了ModuleManager::current_module_manager方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: getEditForm

 public function getEditForm($id = null, $fields = null)
 {
     // get the cmsfields from ModuleManager DataObject
     $moduleManager = ModuleManager::current_module_manager();
     $fields = $moduleManager->getCMSFields();
     // what pages is this module active on
     $modulesGridField = GridField::create("Modules_Gridfield", "Modules", Module::get(), $modulesGridFieldConfig = GridFieldConfig_RecordEditor::create());
     // add multiclass dropdown for modules
     $modulesGridFieldConfig->removeComponentsByType('GridFieldAddNewButton');
     $modulesGridFieldConfig->addComponent(new GridFieldAddNewMultiClass());
     // add the fields
     $fields->addFieldToTab('Root.Modules', $modulesGridField);
     // module positions tab
     $positionsHtml = '<h2>Module positions</h2>';
     $positionsHtml .= '<p class="message info">To change these you need to edit the positions specified in the <code>_config.php</code> file. These are your currently configured positions available:</p>';
     foreach (ModuleManager::config()->positions as $position) {
         $positionsHtml .= '<p>&bull;&nbsp; <strong>' . $position . '</strong><br />&nbsp; &nbsp; Use in your template with <code>$ModulePosition("' . $position . '");</code></p>';
     }
     $positionsHtml .= '</ul>';
     $fields->addFieldToTab('Root.Positions', LiteralField::create('html', $positionsHtml));
     // actions
     $actions = $moduleManager->getCMSActions();
     $form = CMSForm::create($this, 'EditForm', $fields, $actions)->setHTMLID('Form_EditForm');
     $form->setResponseNegotiator($this->getResponseNegotiator());
     $form->addExtraClass('cms-content center cms-edit-form');
     // don't add data-pjax-fragment=CurrentForm, its added in the content template instead
     if ($form->Fields()->hasTabset()) {
         $form->Fields()->findOrMakeTab('Root')->setTemplate('CMSTabSet');
     }
     $form->setHTMLID('Form_EditForm');
     $form->loadDataFrom($moduleManager);
     $form->setTemplate($this->getTemplatesWithSuffix('_EditForm'));
     // Use <button> to allow full jQuery UI styling
     $actions = $actions->dataFields();
     if ($actions) {
         foreach ($actions as $action) {
             $action->setUseButtonTag(true);
         }
     }
     return $form;
 }
开发者ID:jaedb,项目名称:modulemanager,代码行数:41,代码来源:ModuleManagerController.php


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