| Current Path : /var/www/www.indacotrentino.com/www/vendor/laminas/laminas-view/src/Helper/ |
| Current File : /var/www/www.indacotrentino.com/www/vendor/laminas/laminas-view/src/Helper/TranslatorAwareTrait.php |
<?php
declare(strict_types=1);
namespace Laminas\View\Helper;
use Laminas\I18n\Translator\TranslatorInterface as Translator;
/**
* Trait for implementing Laminas\I18n\Translator\TranslatorAwareInterface.
*
* This can be used by helpers that need to implement the interface,
* whether via explicit implementation or duck typing.
*/
trait TranslatorAwareTrait
{
/**
* Translator (optional)
*
* @var Translator|null
*/
protected $translator;
/**
* Translator text domain (optional)
*
* @var string
*/
protected $translatorTextDomain = 'default';
/**
* Whether translator should be used
*
* @var bool
*/
protected $translatorEnabled = true;
/**
* Sets translator to use in helper
*
* @param Translator|null $translator [optional] translator.
* Default is null, which sets no translator.
* @param string $textDomain [optional] text domain
* Default is null, which skips setTranslatorTextDomain
* @return $this
*/
public function setTranslator(?Translator $translator = null, $textDomain = null)
{
$this->translator = $translator;
if (null !== $textDomain) {
$this->setTranslatorTextDomain($textDomain);
}
return $this;
}
/**
* Returns translator used in helper
*
* @return Translator|null
*/
public function getTranslator()
{
if (! $this->isTranslatorEnabled()) {
return;
}
return $this->translator;
}
/**
* Checks if the helper has a translator
*
* @return bool
*/
public function hasTranslator()
{
return (bool) $this->getTranslator();
}
/**
* Sets whether translator is enabled and should be used
*
* @param bool $enabled [optional] whether translator should be used.
* Default is true.
* @return $this
*/
public function setTranslatorEnabled($enabled = true)
{
$this->translatorEnabled = (bool) $enabled;
return $this;
}
/**
* Returns whether translator is enabled and should be used
*
* @return bool
*/
public function isTranslatorEnabled()
{
return $this->translatorEnabled;
}
/**
* Set translation text domain
*
* @param string $textDomain
* @return $this
*/
public function setTranslatorTextDomain($textDomain = 'default')
{
$this->translatorTextDomain = $textDomain;
return $this;
}
/**
* Return the translation text domain
*
* @return string
*/
public function getTranslatorTextDomain()
{
return $this->translatorTextDomain;
}
}