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


PHP Admin::getBaseRouteName方法代码示例

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


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

示例1: getBaseRouteName

 /**
  * Returns the baseRouteName used to generate the routing information.
  *
  * @throws \RuntimeException
  *
  * @return string the baseRouteName used to generate the routing information
  */
 public function getBaseRouteName()
 {
     try {
         return parent::getBaseRouteName();
     } catch (\RuntimeException $e) {
         if (!$this->baseRouteName) {
             preg_match('@([A-Za-z0-9]*)\\\\([A-Za-z0-9]*)Bundle\\\\(Propel)\\\\(.*)@', $this->getClass(), $matches);
             if (!$matches) {
                 throw new \RuntimeException(sprintf('Please define a default `baseRouteName` value for the admin class `%s`', get_class($this)));
             }
             if ($this->isChild()) {
                 // the admin class is a child, prefix it with the parent route name
                 $this->baseRouteName = sprintf('%s_%s', $this->getParent()->getBaseRouteName(), $this->urlize($matches[4]));
             } else {
                 $this->baseRouteName = sprintf('admin_%s_%s_%s', $this->urlize($matches[1]), $this->urlize($matches[2]), $this->urlize($matches[4]));
             }
         }
         return $this->baseRouteName;
     }
 }
开发者ID:kosolapovvp,项目名称:SonataPropelAdminBundle,代码行数:27,代码来源:Admin.php


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