/** * @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()]; }
/** * Filter the query by a related HelpI18n object * * @param HelpI18n|PropelObjectCollection $helpI18n the related object to use as filter * @param string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL * * @return HelpQuery The current query, for fluid interface * @throws PropelException - if the provided filter is invalid. */ public function filterByHelpI18n($helpI18n, $comparison = null) { if ($helpI18n instanceof HelpI18n) { return $this->addUsingAlias(HelpPeer::ID, $helpI18n->getId(), $comparison); } elseif ($helpI18n instanceof PropelObjectCollection) { return $this->useHelpI18nQuery()->filterByPrimaryKeys($helpI18n->getPrimaryKeys())->endUse(); } else { throw new PropelException('filterByHelpI18n() only accepts arguments of type HelpI18n or PropelCollection'); } }
/** * Adds an object to the instance pool. * * Propel keeps cached copies of objects in an instance pool when they are retrieved * from the database. In some cases -- especially when you override doSelect*() * methods in your stub classes -- you may need to explicitly add objects * to the cache in order to ensure that the same objects are always returned by doSelect*() * and retrieveByPK*() calls. * * @param HelpI18n $obj A HelpI18n object. * @param string $key (optional) key to use for instance map (for performance boost if key was already calculated externally). */ public static function addInstanceToPool($obj, $key = null) { if (Propel::isInstancePoolingEnabled()) { if ($key === null) { $key = serialize(array((string) $obj->getId(), (string) $obj->getLocale())); } // if key === null HelpI18nPeer::$instances[$key] = $obj; } }
/** * Exclude object from result * * @param HelpI18n $helpI18n Object to remove from the list of results * * @return HelpI18nQuery The current query, for fluid interface */ public function prune($helpI18n = null) { if ($helpI18n) { $this->addCond('pruneCond0', $this->getAliasedColName(HelpI18nPeer::ID), $helpI18n->getId(), Criteria::NOT_EQUAL); $this->addCond('pruneCond1', $this->getAliasedColName(HelpI18nPeer::LOCALE), $helpI18n->getLocale(), Criteria::NOT_EQUAL); $this->combine(array('pruneCond0', 'pruneCond1'), Criteria::LOGICAL_OR); } return $this; }
/** * 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]; }