127 lines
3.7 KiB
PHP
127 lines
3.7 KiB
PHP
<?php
|
|
|
|
namespace Thelia\Model;
|
|
|
|
use Propel\Runtime\Connection\ConnectionInterface;
|
|
use Propel\Runtime\Exception\PropelException;
|
|
use Propel\Runtime\Propel;
|
|
use Symfony\Component\Filesystem\Filesystem;
|
|
use Thelia\Core\Event\Lang\LangEvent;
|
|
use Thelia\Core\Event\TheliaEvents;
|
|
use Thelia\Core\Template\TemplateHelper;
|
|
use Thelia\Core\Translation\Translator;
|
|
use Thelia\Model\Base\Lang as BaseLang;
|
|
use Thelia\Model\LangQuery;
|
|
use Thelia\Model\Map\LangTableMap;
|
|
|
|
class Lang extends BaseLang {
|
|
|
|
use \Thelia\Model\Tools\ModelEventDispatcherTrait;
|
|
/**
|
|
* Return the default language object, using a local variable to cache it.
|
|
*
|
|
* @throws \RuntimeException
|
|
*/
|
|
public static function getDefaultLanguage() {
|
|
|
|
|
|
$default_lang = LangQuery::create()->findOneByByDefault(1);
|
|
|
|
if ($default_lang == null) throw new \RuntimeException("No default language is defined. Please define one.");
|
|
|
|
return $default_lang;
|
|
}
|
|
|
|
public function toggleDefault()
|
|
{
|
|
if($this->getId() === null) {
|
|
throw new \RuntimeException("impossible to just uncheck default language, choose a new one");
|
|
}
|
|
$con = Propel::getWriteConnection(LangTableMap::DATABASE_NAME);
|
|
$con->beginTransaction();
|
|
try {
|
|
LangQuery::create()
|
|
->filterByByDefault(1)
|
|
->update(array('ByDefault' => 0), $con);
|
|
|
|
$this
|
|
->setByDefault(1)
|
|
->save($con);
|
|
|
|
$con->commit();
|
|
} catch(PropelException $e) {
|
|
$con->rollBack();
|
|
throw $e;
|
|
}
|
|
|
|
}
|
|
|
|
protected function fixMissingFlag() {
|
|
// Be sure that a lang have a flag, otherwise copy the
|
|
// "unknown" flag
|
|
$adminTemplate = TemplateHelper::getInstance()->getActiveAdminTemplate();
|
|
$unknownFlag = ConfigQuery::getUnknownFlagPath();
|
|
|
|
$unknownFlagPath = $adminTemplate->getAbsolutePath().DS.$unknownFlag;
|
|
|
|
if (! file_exists($unknownFlagPath)) {
|
|
throw new \RuntimeException(
|
|
Translator::getInstance()->trans(
|
|
"The image which replaces an undefined country flag (%file) was not found. Please check unknown-flag-path configuration variable, and check that the image exists.",
|
|
array("%file" => $unknownFlag)
|
|
)
|
|
);
|
|
}
|
|
|
|
// Check if the country flag exists
|
|
$countryFlag = rtrim(dirname($unknownFlagPath), DS).DS.$this->getCode().'.png';
|
|
|
|
if (! file_exists($countryFlag)) {
|
|
$fs = new Filesystem();
|
|
|
|
$fs->copy($unknownFlagPath, $countryFlag);
|
|
}
|
|
}
|
|
|
|
public function preInsert(ConnectionInterface $con = null)
|
|
{
|
|
$this->dispatchEvent(TheliaEvents::BEFORE_CREATELANG, new LangEvent($this));
|
|
|
|
return true;
|
|
}
|
|
|
|
public function postInsert(ConnectionInterface $con = null)
|
|
{
|
|
$this->dispatchEvent(TheliaEvents::AFTER_CREATELANG, new LangEvent($this));
|
|
|
|
$this->fixMissingFlag();
|
|
}
|
|
|
|
public function preUpdate(ConnectionInterface $con = null)
|
|
{
|
|
$this->dispatchEvent(TheliaEvents::BEFORE_UPDATELANG, new LangEvent($this));
|
|
|
|
return true;
|
|
}
|
|
|
|
public function postUpdate(ConnectionInterface $con = null)
|
|
{
|
|
$this->dispatchEvent(TheliaEvents::AFTER_UPDATELANG, new LangEvent($this));
|
|
|
|
$this->fixMissingFlag();
|
|
}
|
|
|
|
public function preDelete(ConnectionInterface $con = null)
|
|
{
|
|
$this->dispatchEvent(TheliaEvents::BEFORE_DELETELANG, new LangEvent($this));
|
|
|
|
return true;
|
|
}
|
|
|
|
public function postDelete(ConnectionInterface $con = null)
|
|
{
|
|
$this->dispatchEvent(TheliaEvents::AFTER_DELETELANG, new LangEvent($this));
|
|
}
|
|
|
|
}
|