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


PHP AdminInterface::hasActiveSubClass方法代码示例

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


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

示例1: redirectTo

 /**
  * Redirect the user depend on this choice
  *
  * @param object  $object
  * @param Request $request
  *
  * @return RedirectResponse
  */
 protected function redirectTo($object, Request $request = null)
 {
     $request = $this->resolveRequest($request);
     $url = false;
     if (null !== $request->get('btn_update_and_list')) {
         $url = $this->admin->generateUrl('list');
     }
     if (null !== $request->get('btn_create_and_list')) {
         $url = $this->admin->generateUrl('list');
     }
     if (null !== $request->get('btn_create_and_create')) {
         $params = array();
         if ($this->admin->hasActiveSubClass()) {
             $params['subclass'] = $request->get('subclass');
         }
         $url = $this->admin->generateUrl('create', $params);
     }
     if ($this->getRestMethod($request) == 'DELETE') {
         $url = $this->admin->generateUrl('list');
     }
     if (!$url) {
         $url = $this->admin->generateObjectUrl('edit', $object);
     }
     return new RedirectResponse($url);
 }
开发者ID:jerome-fix,项目名称:SonataAdminBundle,代码行数:33,代码来源:CRUDController.php

示例2: redirectTo

 /**
  * Redirect the user depend on this choice.
  *
  * @param object $object
  *
  * @return RedirectResponse
  */
 protected function redirectTo($object)
 {
     $request = $this->getRequest();
     $url = false;
     if (null !== $request->get('btn_update_and_list')) {
         $url = $this->admin->generateUrl('list');
     }
     if (null !== $request->get('btn_create_and_list')) {
         $url = $this->admin->generateUrl('list');
     }
     if (null !== $request->get('btn_create_and_create')) {
         $params = array();
         if ($this->admin->hasActiveSubClass()) {
             $params['subclass'] = $request->get('subclass');
         }
         $url = $this->admin->generateUrl('create', $params);
     }
     if ($this->getRestMethod() === 'DELETE') {
         $url = $this->admin->generateUrl('list');
     }
     if (!$url) {
         foreach (array('edit', 'show') as $route) {
             if ($this->admin->hasRoute($route) && $this->admin->isGranted(strtoupper($route), $object)) {
                 $url = $this->admin->generateObjectUrl($route, $object);
                 break;
             }
         }
     }
     if (!$url) {
         $url = $this->admin->generateUrl('list');
     }
     return new RedirectResponse($url);
 }
开发者ID:ejkun,项目名称:SonataAdminBundle,代码行数:40,代码来源:CRUDController.php

示例3: createAction

 /**
  * Create action.
  *
  * @param Request $request
  *
  * @return Response
  *
  * @throws AccessDeniedException If access is not granted
  */
 public function createAction()
 {
     $request = $this->getRequest();
     // the key used to lookup the template
     $templateKey = 'edit';
     $this->admin->checkAccess('create');
     $class = new \ReflectionClass($this->admin->hasActiveSubClass() ? $this->admin->getActiveSubClass() : $this->admin->getClass());
     if ($class->isAbstract()) {
         return $this->render('SonataAdminBundle:CRUD:select_subclass.html.twig', array('base_template' => $this->getBaseTemplate(), 'admin' => $this->admin, 'action' => 'create'), null, $request);
     }
     $object = $this->admin->getNewInstance();
     $preResponse = $this->preCreate($request, $object);
     if ($preResponse !== null) {
         return $preResponse;
     }
     $this->admin->setSubject($object);
     /** @var $form \Symfony\Component\Form\Form */
     $form = $this->admin->getForm();
     $form->setData($object);
     $form->handleRequest($request);
     if ($form->isSubmitted()) {
         //TODO: remove this check for 3.0
         if (method_exists($this->admin, 'preValidate')) {
             $this->admin->preValidate($object);
         }
         $isFormValid = $form->isValid();
         // persist if the form was valid and if in preview mode the preview was approved
         if ($isFormValid && (!$this->isInPreviewMode($request) || $this->isPreviewApproved($request))) {
             $this->admin->checkAccess('create', $object);
             try {
                 $object = $this->admin->create($object);
                 if ($this->isXmlHttpRequest()) {
                     return $this->renderJson(array('result' => 'ok', 'objectId' => $this->admin->getNormalizedIdentifier($object)), 200, array());
                 }
                 $this->addFlash('sonata_flash_success', $this->admin->trans('flash_create_success', array('%name%' => $this->escapeHtml($this->admin->toString($object))), 'SonataAdminBundle'));
                 // redirect to edit mode
                 return $this->redirectTo($object);
             } catch (ModelManagerException $e) {
                 $this->handleModelManagerException($e);
                 $isFormValid = false;
             }
         }
         // show an error message if the form failed validation
         if (!$isFormValid) {
             if (!$this->isXmlHttpRequest()) {
                 $this->addFlash('sonata_flash_error', $this->admin->trans('flash_create_error', array('%name%' => $this->escapeHtml($this->admin->toString($object))), 'SonataAdminBundle'));
             }
         } elseif ($this->isPreviewRequested()) {
             // pick the preview template if the form was valid and preview was requested
             $templateKey = 'preview';
             $this->admin->getShow();
         }
     }
     $view = $form->createView();
     // set the theme for the current Admin Form
     $this->get('twig')->getExtension('form')->renderer->setTheme($view, $this->admin->getFormTheme());
     return $this->render($this->admin->getTemplate($templateKey), array('action' => 'create', 'form' => $view, 'object' => $object), null);
 }
开发者ID:lilocon,项目名称:SonataAdminBundle,代码行数:67,代码来源:CRUDController.php

示例4: redirectTo

 /**
  * redirect the user depend on this choice
  *
  * @param object $object
  *
  * @return Response
  */
 public function redirectTo($object)
 {
     $url = false;
     if ($this->get('request')->get('btn_update_and_list')) {
         $url = $this->admin->generateUrl('list');
     }
     if ($this->get('request')->get('btn_create_and_create')) {
         $params = array();
         if ($this->admin->hasActiveSubClass()) {
             $params['subclass'] = $this->get('request')->get('subclass');
         }
         $url = $this->admin->generateUrl('create', $params);
     }
     if (!$url) {
         $url = $this->admin->generateObjectUrl('edit', $object);
     }
     return new RedirectResponse($url);
 }
开发者ID:natxet,项目名称:SonataAdminBundle,代码行数:25,代码来源:CRUDController.php


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