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


PHP MauticFactory::getRouter方法代碼示例

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


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

示例1: __construct

 /**
  * @param MauticFactory $factory
  */
 public function __construct(MauticFactory $factory)
 {
     $this->translator = $factory->getTranslator();
     $this->validator = $factory->getValidator();
     $this->apiMode = $factory->getRequest()->get('api_mode', $factory->getSession()->get('mautic.client.filter.api_mode', 'oauth1a'));
     $this->router = $factory->getRouter();
 }
開發者ID:Jandersolutions,項目名稱:mautic,代碼行數:10,代碼來源:ClientType.php

示例2: getAuthCallbackUrl

 /**
  * Gets the URL for the built in oauth callback
  *
  * @return string
  */
 public function getAuthCallbackUrl()
 {
     $defaultUrl = $this->factory->getRouter()->generate('mautic_integration_auth_callback', array('integration' => $this->getName()), true);
     /** @var PluginIntegrationAuthCallbackUrlEvent $event */
     $event = $this->dispatcher->dispatch(PluginEvents::PLUGIN_ON_INTEGRATION_GET_AUTH_CALLBACK_URL, new PluginIntegrationAuthCallbackUrlEvent($this, $defaultUrl));
     return $event->getCallbackUrl();
 }
開發者ID:Yame-,項目名稱:mautic,代碼行數:12,代碼來源:AbstractIntegration.php

示例3: __construct

 /**
  * @param MauticFactory $factory
  */
 public function __construct(MauticFactory $factory)
 {
     $this->em = $factory->getEntityManager();
     $this->translator = $factory->getTranslator();
     $this->model = $factory->getModel('category');
     $this->router = $factory->getRouter();
 }
開發者ID:Jandersolutions,項目名稱:mautic,代碼行數:10,代碼來源:CategoryListType.php

示例4: getTokens

 /**
  * Get tokens
  *
  * @return array
  */
 public function getTokens()
 {
     $tokens = array_merge($this->globalTokens, $this->eventTokens);
     // Include the tracking pixel token as it's auto appended to the body
     if ($this->appendTrackingPixel) {
         $tokens['{tracking_pixel}'] = $this->factory->getRouter()->generate('mautic_email_tracker', array('idHash' => $this->idHash), true);
     } else {
         $tokens['{tracking_pixel}'] = self::getBlankPixel();
     }
     return $tokens;
 }
開發者ID:emtudo,項目名稱:mautic,代碼行數:16,代碼來源:MailHelper.php

示例5: buildUrl

 /**
  * @param       $route
  * @param array $routeParams
  * @param bool  $absolute
  * @param array $clickthrough
  * @param bool  $shortenUrl
  *
  * @return string
  */
 public function buildUrl($route, $routeParams = array(), $absolute = true, $clickthrough = array(), $shortenUrl = false)
 {
     $url = $this->factory->getRouter()->generate($route, $routeParams, $absolute);
     $url .= !empty($clickthrough) ? '?ct=' . $this->encodeArrayForUrl($clickthrough) : '';
     if ($shortenUrl) {
         /** @var UrlHelper $urlHelper */
         $urlHelper = $this->factory->getHelper('url');
         return $urlHelper->buildShortUrl($url);
     }
     return $url;
 }
開發者ID:HomeRefill,項目名稱:mautic,代碼行數:20,代碼來源:CommonModel.php

示例6: __construct

 /**
  * @param MauticFactory $factory
  */
 public function __construct(MauticFactory $factory)
 {
     $this->factory = $factory;
     $this->templating = $factory->getTemplating();
     $this->request = $factory->getRequest();
     $this->security = $factory->getSecurity();
     $this->serializer = $factory->getSerializer();
     $this->params = $factory->getSystemParameters();
     $this->dispatcher = $factory->getDispatcher();
     $this->translator = $factory->getTranslator();
     $this->em = $factory->getEntityManager();
     $this->router = $factory->getRouter();
     $this->init();
 }
開發者ID:Yame-,項目名稱:mautic,代碼行數:17,代碼來源:CommonSubscriber.php

示例7: buildUrl

 /**
  * @param       $route
  * @param array $routeParams
  * @param bool  $absolute
  * @param array $clickthrough
  *
  * @return string
  */
 public function buildUrl($route, $routeParams = array(), $absolute = true, $clickthrough = array())
 {
     $url = $this->factory->getRouter()->generate($route, $routeParams, $absolute);
     $url .= !empty($clickthrough) ? '?ct=' . $this->encodeArrayForUrl($clickthrough) : '';
     return $url;
 }
開發者ID:Jandersolutions,項目名稱:mautic,代碼行數:14,代碼來源:CommonModel.php

示例8: getAuthCallbackUrl

 /**
  * Gets the URL for the built in oauth callback
  *
  * @return string
  */
 public function getAuthCallbackUrl()
 {
     return $this->factory->getRouter()->generate('mautic_integration_auth_callback', array('integration' => $this->getName()), true);
 }
開發者ID:smotalima,項目名稱:mautic,代碼行數:9,代碼來源:AbstractIntegration.php


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