本文整理匯總了PHP中Symfony\Bundle\FrameworkBundle\Routing\Router::__construct方法的典型用法代碼示例。如果您正苦於以下問題:PHP Router::__construct方法的具體用法?PHP Router::__construct怎麽用?PHP Router::__construct使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Symfony\Bundle\FrameworkBundle\Routing\Router
的用法示例。
在下文中一共展示了Router::__construct方法的7個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: __construct
/**
* Extends parent constructor to get documents service
* as $container is private in parent class
*
* @param ReadSiteRepositoryInterface $siteRepository
* @param CurrentSiteIdInterface $currentSiteManager
* @param ContainerInterface $container
* @param mixed $resource
* @param array $options
* @param RequestContext $context
*/
public function __construct(ReadSiteRepositoryInterface $siteRepository, CurrentSiteIdInterface $currentSiteManager, ContainerInterface $container, $resource, array $options = array(), RequestContext $context = null)
{
parent::__construct($container, $resource, $options, $context);
$this->siteRepository = $siteRepository;
$this->currentSiteManager = $currentSiteManager;
$this->requestStack = $container->get('request_stack');
$this->nodeManager = $container->get('open_orchestra_front.manager.node');
}
示例2: __construct
public function __construct(ContainerInterface $container, $resource, array $options = [], RequestContext $context = null)
{
$ch = $container->get('claroline.config.platform_config_handler');
$this->host = $ch->getParameter('domain_name');
$context = $context ?: new RequestContext();
$sslEnabled = $ch->getParameter('ssl_enabled');
$this->scheme = $sslEnabled ? 'https' : 'http';
$this->buildContext($context);
parent::__construct($container, $resource, $options, $context);
}
示例3: __construct
/**
* {@inheritDoc}
*/
public function __construct(ContainerInterface $container, $resource, array $options = [], RequestContext $context = null)
{
$this->container = $container;
parent::__construct($container, $resource, $options, $context);
}
示例4: __construct
/**
* @param ContainerInterface $container
* @param mixed $resource
* @param array $options
* @param RequestContext $context
*/
public function __construct(ContainerInterface $container, $resource, array $options = array(), RequestContext $context = null)
{
parent::__construct($container, $resource, $options, $context);
$this->requestStack = $container->get('request_stack');
}
示例5: __construct
public function __construct(ContainerInterface $container, $resource, array $options = array(), RequestContext $context = null)
{
parent::__construct($container, $resource, $options, $context);
$this->dataComposerMemory = $container->get('hdiv_security_bundle.hdiv_data_composer_memory');
$this->HDIVConfig = $container->get('hdiv_security_bundle.hdiv_config');
}
示例6: __construct
public function __construct(ContainerInterface $container, $resource, array $options = array(), RequestContext $context = null, array $defaults = array())
{
parent::__construct($container, $resource, $options, $context, $defaults);
$this->container = $container;
}
示例7: __construct
/**
* ConditionalRouter constructor.
*
* @param ContainerInterface $container
* @param mixed $resource
* @param array $options
* @param RequestContext|null $context
*/
public function __construct(ContainerInterface $container, $resource, array $options = array(), RequestContext $context = null)
{
// $this->loader is null at any moment, that is why we have to check whether there is conditional_router.routing_loader in the container
$this->aContainer = $container;
return parent::__construct($container, $resource, $options, $context);
}