core/lib/Thelia/Model/Lang.php line 21

  1. <?php
  2. /*
  3.  * This file is part of the Thelia package.
  4.  * http://www.thelia.net
  5.  *
  6.  * (c) OpenStudio <info@thelia.net>
  7.  *
  8.  * For the full copyright and license information, please view the LICENSE
  9.  * file that was distributed with this source code.
  10.  */
  11. namespace Thelia\Model;
  12. use Propel\Runtime\Connection\ConnectionInterface;
  13. use Propel\Runtime\Exception\PropelException;
  14. use Propel\Runtime\Propel;
  15. use Thelia\Model\Base\Lang as BaseLang;
  16. use Thelia\Model\Map\LangTableMap;
  17. class Lang extends BaseLang
  18. {
  19.     // Constants to define behavior when a request string does not exists in the current language
  20.     public const STRICTLY_USE_REQUESTED_LANGUAGE 0;
  21.     public const REPLACE_BY_DEFAULT_LANGUAGE 1;
  22.     protected static $defaultLanguage;
  23.     /**
  24.      * Return the default language object, using a local variable to cache it.
  25.      *
  26.      * @throws \RuntimeException
  27.      */
  28.     public static function getDefaultLanguage()
  29.     {
  30.         if (null === self::$defaultLanguage) {
  31.             self::$defaultLanguage LangQuery::create()->findOneByByDefault(1);
  32.             if (null === self::$defaultLanguage) {
  33.                 throw new \RuntimeException('No default language is defined. Please define one.');
  34.             }
  35.         }
  36.         return self::$defaultLanguage;
  37.     }
  38.     public function toggleDefault(): void
  39.     {
  40.         if ($this->getId() === null) {
  41.             throw new \RuntimeException('impossible to just uncheck default language, choose a new one');
  42.         }
  43.         if (!$this->getByDefault()) {
  44.             $con Propel::getWriteConnection(LangTableMap::DATABASE_NAME);
  45.             $con->beginTransaction();
  46.             try {
  47.                 LangQuery::create()
  48.                     ->filterByByDefault(1)
  49.                     ->update(['ByDefault' => 0], $con);
  50.                 $this
  51.                     ->setVisible(1)
  52.                     ->setActive(1)
  53.                     ->setByDefault(1)
  54.                     ->save($con);
  55.                 $con->commit();
  56.             } catch (PropelException $e) {
  57.                 $con->rollBack();
  58.                 throw $e;
  59.             }
  60.         }
  61.     }
  62.     public function preSave(ConnectionInterface $con null)
  63.     {
  64.         // If the date/time format is not specified, generate it.
  65.         $dateTimeFormat $this->getDateTimeFormat();
  66.         if (empty($dateTimeFormat)) {
  67.             $this->setDatetimeFormat(sprintf('%s %s'$this->getDateFormat(), $this->getTimeFormat()));
  68.         }
  69.         return parent::preSave($con);
  70.     }
  71. }