當前位置: 首頁>>代碼示例>>PHP>>正文


PHP CMSForm::Fields方法代碼示例

本文整理匯總了PHP中CMSForm::Fields方法的典型用法代碼示例。如果您正苦於以下問題:PHP CMSForm::Fields方法的具體用法?PHP CMSForm::Fields怎麽用?PHP CMSForm::Fields使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在CMSForm的用法示例。


在下文中一共展示了CMSForm::Fields方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: updateEditForm

 public function updateEditForm(CMSForm &$form)
 {
     $fields = $form->Fields();
     $class = $this->owner->modelClass;
     $o = singleton($class);
     $gf = $form->Fields()->dataFieldByName($class);
     $config = $gf->getConfig();
     // If we have the bulk manager, enable by default
     if (class_exists('GridFieldBulkManager')) {
         if ($o->hasMethod('bulkManagerDisable') && $o->bulkManagerDisable) {
         } else {
             $config->addComponent($bulkManager = new GridFieldBulkManager());
             if ($o->hasMethod('bulkManagerAdd')) {
                 $actions = $o->bulkManagerAdd();
                 foreach ($actions as $key => $action) {
                     $bulkHandler = isset($action['Handler']) ? $action['Handler'] : null;
                     $bulkConfig = isset($action['Config']) ? $action['Config'] : null;
                     $bulkManager->addBulkAction($action['Name'], $action['Label'], $bulkHandler, $bulkConfig);
                 }
             }
         }
     }
     // If we have the export all button (form-extras module), enable
     if (class_exists('GridFieldExportAllButton')) {
         $config->addComponent(new GridFieldExportAllButton('before'));
     }
     if (!Director::isDev() || !Permission::check('ADMIN')) {
         return;
     }
     // Add buttons
     $config->addComponent(new GridFieldButtonRow('after'));
     $config->addComponent($btnEmpty = new DevToolkitEmptyButton('buttons-after-left'));
     if ($o->hasMethod('provideFake')) {
         $config->addComponent($btnAddFake = new DevToolkitAddFakeButton('buttons-after-left'));
     }
     if ($o->hasExtension('GeoExtension')) {
         $config->addComponent($btnAddFake = new DevToolkitFakeLocationsButton('buttons-after-left'));
     }
     $config->addComponent($btnDump = new DevToolkitDumpButton('buttons-after-left'));
     // Show session message
     $message = self::SessionMessage();
     if ($message) {
         $fields->insertBefore(new LiteralField("dev_message", "<div class='message {$message->Type}'>{$message->Content}</div>"), $gf->getName());
     }
 }
開發者ID:lekoala,項目名稱:silverstripe-devtoolkit,代碼行數:45,代碼來源:DevToolkitAdminExtension.php


注:本文中的CMSForm::Fields方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。