本文整理汇总了PHP中Pim\Bundle\UserBundle\Context\UserContext::getUserLocaleCodes方法的典型用法代码示例。如果您正苦于以下问题:PHP UserContext::getUserLocaleCodes方法的具体用法?PHP UserContext::getUserLocaleCodes怎么用?PHP UserContext::getUserLocaleCodes使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Pim\Bundle\UserBundle\Context\UserContext
的用法示例。
在下文中一共展示了UserContext::getUserLocaleCodes方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的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: getFieldNames
/**
* Helper method to generate field names in format : '<locale>' => '<field>|<locale>'
*
* @return string[]
*/
protected function getFieldNames()
{
$userLocales = $this->userContext->getUserLocaleCodes();
$collection = array();
foreach ($this->getOption('locales') as $locale) {
if (in_array($locale, $userLocales)) {
$collection[$locale] = $locale;
}
}
return $collection;
}
示例3: configureOptions
/**
* {@inheritdoc}
*/
public function configureOptions(OptionsResolver $resolver)
{
parent::configureOptions($resolver);
$resolver->setRequired(['entity_class', 'translation_class', 'field', 'required_locale']);
$resolver->setDefaults(['translation_class' => false, 'entity_class' => false, 'field' => false, 'locales' => $this->userContext->getUserLocaleCodes(), 'required_locale' => [], 'widget' => 'text']);
}
示例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];
}
示例5: setDefaultOptions
/**
* {@inheritdoc}
*/
public function setDefaultOptions(OptionsResolverInterface $resolver)
{
parent::setDefaultOptions($resolver);
$resolver->setRequired(array('entity_class', 'translation_class', 'field', 'required_locale'));
$resolver->setDefaults(array('translation_class' => false, 'entity_class' => false, 'field' => false, 'locales' => $this->userContext->getUserLocaleCodes(), 'required_locale' => array(), 'widget' => 'text'));
}