本文整理汇总了PHP中Pim\Bundle\UserBundle\Context\UserContext::getChannelChoicesWithUserChannel方法的典型用法代码示例。如果您正苦于以下问题:PHP UserContext::getChannelChoicesWithUserChannel方法的具体用法?PHP UserContext::getChannelChoicesWithUserChannel怎么用?PHP UserContext::getChannelChoicesWithUserChannel使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Pim\Bundle\UserBundle\Context\UserContext
的用法示例。
在下文中一共展示了UserContext::getChannelChoicesWithUserChannel方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: getAction
/**
* @param string $id Product id
*
* @throws NotFoundHttpException If product is not found or the user cannot see it
*
* @return JsonResponse
*/
public function getAction($id)
{
$product = $this->findProductOr404($id);
$this->productBuilder->addMissingAssociations($product);
$channels = array_keys($this->userContext->getChannelChoicesWithUserChannel());
$locales = $this->userContext->getUserLocaleCodes();
return new JsonResponse($this->normalizer->normalize($product, 'internal_api', ['locales' => $locales, 'channels' => $channels, 'filter_type' => 'pim.internal_api.product_value.view']));
}
示例2: configureOptions
/**
* {@inheritdoc}
*/
public function configureOptions(OptionsResolver $resolver)
{
$scopeChoices = $this->userContext->getChannelChoicesWithUserChannel();
$resolver->setDefaults(['field_type' => 'choice', 'field_options' => ['choices' => $scopeChoices]]);
}
示例3: setDefaultOptions
/**
* {@inheritdoc}
*/
public function setDefaultOptions(OptionsResolverInterface $resolver)
{
$scopeChoices = $this->userContext->getChannelChoicesWithUserChannel();
$resolver->setDefaults(array('field_type' => 'choice', 'field_options' => array('choices' => $scopeChoices)));
}
示例4: buildContext
/**
* Build context for normalizer
*
* @return array
*/
protected function buildContext()
{
$channels = array_keys($this->userContext->getChannelChoicesWithUserChannel());
$locales = $this->userContext->getUserLocaleCodes();
return ['locales' => $locales, 'channels' => $channels, 'filter_type' => 'pim.internal_api.product_value.view', 'locale' => $this->userContext->getUiLocale()->getCode(), 'disable_grouping_separator' => true];
}