Esempio n. 1
0
 /**
  * @PreAuthorize("hasRole('ROLE_ADMIN')")
  *
  * @Template("PGSCoreDomainBundle:Help:form.html.twig")
  */
 public function newAction(Request $request)
 {
     $key = $request->get('key', null);
     if (!($help = $this->helpManager->canAdd())) {
         return new RedirectResponse($this->generateUrl('pgs_core_help_list'));
     }
     if ($key !== null) {
         $help->setKey($key);
     }
     $locales = $this->getLocales();
     foreach ($locales as $locale) {
         $helpI18n = new HelpI18n();
         $helpI18n->setLocale($locale);
         $help->addHelpI18n($helpI18n);
     }
     $form = $this->createForm($this->get('pgs.core.form.type.help'), $help);
     if ($request->getMethod() == "POST") {
         $form->submit($request);
         if ($form->isValid()) {
             $this->processForm($form);
             return new RedirectResponse($this->generateUrl('pgs_core_help_list'));
         }
     }
     return ['title' => 'New Help', 'model' => 'Help', 'help' => $help, 'form' => $form->createView()];
 }
Esempio n. 2
0
 /**
  * Returns the current translation for a given locale
  *
  * @param     string $locale Locale to use for the translation, e.g. 'fr_FR'
  * @param     PropelPDO $con an optional connection object
  *
  * @return HelpI18n */
 public function getTranslation($locale = 'en_US', PropelPDO $con = null)
 {
     if (!isset($this->currentTranslations[$locale])) {
         if (null !== $this->collHelpI18ns) {
             foreach ($this->collHelpI18ns as $translation) {
                 if ($translation->getLocale() == $locale) {
                     $this->currentTranslations[$locale] = $translation;
                     return $translation;
                 }
             }
         }
         if ($this->isNew()) {
             $translation = new HelpI18n();
             $translation->setLocale($locale);
         } else {
             $translation = HelpI18nQuery::create()->filterByPrimaryKey(array($this->getPrimaryKey(), $locale))->findOneOrCreate($con);
             $this->currentTranslations[$locale] = $translation;
         }
         $this->addHelpI18n($translation);
     }
     return $this->currentTranslations[$locale];
 }