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


PHP FormBuilderInterface::getFormConfig方法代碼示例

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


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

示例1: buildForm

 /**
  * @param FormBuilderInterface $builder
  * @param array                $options
  * @throws \LogicException when getOwner method isn't implemented for entity with ownership type
  *
  * @SuppressWarnings(PHPMD.NPathComplexity)
  * @SuppressWarnings(PHPMD.CyclomaticComplexity)
  */
 public function buildForm(FormBuilderInterface $builder, array $options)
 {
     if ($options['ownership_disabled']) {
         return;
     }
     $formConfig = $builder->getFormConfig();
     if (!$formConfig->getCompound()) {
         return;
     }
     $dataClassName = $formConfig->getDataClass();
     if (!$dataClassName) {
         return;
     }
     $user = $this->getCurrentUser();
     if (!$user) {
         return;
     }
     $metadata = $this->getMetadata($dataClassName);
     if (!$metadata || $metadata->isOrganizationOwned()) {
         return;
     }
     $this->fieldName = $metadata->getOwnerFieldName();
     $this->checkIsGranted('CREATE', 'entity:' . $dataClassName);
     $defaultOwner = null;
     if ($metadata->isUserOwned() && $this->isAssignGranted) {
         $this->addUserOwnerField($builder, $dataClassName);
         $defaultOwner = $user;
     } elseif ($metadata->isBusinessUnitOwned()) {
         $this->addBusinessUnitOwnerField($builder, $user, $dataClassName);
         if (!$this->checkIsBusinessUnitEntity($dataClassName)) {
             $defaultOwner = $this->getCurrentBusinessUnit($this->getOrganization());
         }
     }
     $builder->addEventListener(FormEvents::PRE_SET_DATA, [$this, 'preSetData']);
     $builder->addEventListener(FormEvents::PRE_SUBMIT, [$this, 'preSubmit']);
     $builder->addEventListener(FormEvents::POST_SUBMIT, [$this, 'postSubmit']);
     /**
      * Adding subscriber to hide owner field for update pages if assign permission is not granted
      * and set default owner value
      */
     $builder->addEventSubscriber(new OwnerFormSubscriber($this->managerRegistry, $this->fieldName, $this->fieldLabel, $this->isAssignGranted, $defaultOwner));
 }
開發者ID:nmallare,項目名稱:platform,代碼行數:50,代碼來源:OwnerFormExtension.php

示例2: buildForm

 /**
  * @param FormBuilderInterface $builder
  * @param array $options
  * @throws \LogicException when getOwner method isn't implemented for entity with ownership type
  */
 public function buildForm(FormBuilderInterface $builder, array $options)
 {
     $dataClassName = $builder->getFormConfig()->getDataClass();
     if (!$dataClassName) {
         return;
     }
     $user = $this->getCurrentUser();
     if (!$user) {
         return;
     }
     $metadata = $this->ownershipMetadataProvider->getMetadata($dataClassName);
     if (!$metadata->hasOwner()) {
         return;
     }
     if (!method_exists($dataClassName, 'getOwner')) {
         throw new \LogicException(sprintf('Method getOwner must be implemented for %s entity.', $dataClassName));
     }
     /**
      * TODO: Implement object-based assign check after access levels are supported
      */
     $this->isAssignGranted = $this->securityFacade->isGranted('ASSIGN', 'entity:' . $dataClassName);
     $defaultOwner = null;
     if ($metadata->isUserOwned() && $this->isAssignGranted) {
         $this->addUserOwnerField($builder);
         $defaultOwner = $user;
     } elseif ($metadata->isBusinessUnitOwned()) {
         $this->addBusinessUnitOwnerField($builder, $user, $dataClassName);
         $defaultOwner = $this->getCurrentBusinessUnit();
     } elseif ($metadata->isOrganizationOwned()) {
         $this->addOrganizationOwnerField($builder, $user);
         $defaultOwner = $this->getCurrentOrganization();
     }
     /**
      * Adding subscriber to hide owner field for update pages if assign permission is not granted
      * and set default owner value
      */
     $builder->addEventSubscriber(new OwnerFormSubscriber($this->managerRegistry, $this->fieldName, $this->fieldLabel, $this->isAssignGranted, $defaultOwner));
 }
開發者ID:ashutosh-srijan,項目名稱:findit_akeneo,代碼行數:43,代碼來源:OwnerFormExtension.php


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