mirror of
https://github.com/torrentpier/torrentpier-lts.git
synced 2025-03-01 15:21:02 +03:00
70 lines
1.9 KiB
PHP
70 lines
1.9 KiB
PHP
<?php
|
|
/**
|
|
* Zend Framework (http://framework.zend.com/)
|
|
*
|
|
* @link http://github.com/zendframework/zf2 for the canonical source repository
|
|
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
|
*/
|
|
|
|
namespace Zend\I18n\Translator;
|
|
|
|
interface TranslatorAwareInterface
|
|
{
|
|
/**
|
|
* Sets translator to use in helper
|
|
*
|
|
* @param TranslatorInterface $translator [optional] translator.
|
|
* Default is null, which sets no translator.
|
|
* @param string $textDomain [optional] text domain
|
|
* Default is null, which skips setTranslatorTextDomain
|
|
* @return TranslatorAwareInterface
|
|
*/
|
|
public function setTranslator(TranslatorInterface $translator = null, $textDomain = null);
|
|
|
|
/**
|
|
* Returns translator used in object
|
|
*
|
|
* @return TranslatorInterface|null
|
|
*/
|
|
public function getTranslator();
|
|
|
|
/**
|
|
* Checks if the object has a translator
|
|
*
|
|
* @return bool
|
|
*/
|
|
public function hasTranslator();
|
|
|
|
/**
|
|
* Sets whether translator is enabled and should be used
|
|
*
|
|
* @param bool $enabled [optional] whether translator should be used.
|
|
* Default is true.
|
|
* @return TranslatorAwareInterface
|
|
*/
|
|
public function setTranslatorEnabled($enabled = true);
|
|
|
|
/**
|
|
* Returns whether translator is enabled and should be used
|
|
*
|
|
* @return bool
|
|
*/
|
|
public function isTranslatorEnabled();
|
|
|
|
/**
|
|
* Set translation text domain
|
|
*
|
|
* @param string $textDomain
|
|
* @return TranslatorAwareInterface
|
|
*/
|
|
public function setTranslatorTextDomain($textDomain = 'default');
|
|
|
|
/**
|
|
* Return the translation text domain
|
|
*
|
|
* @return string
|
|
*/
|
|
public function getTranslatorTextDomain();
|
|
}
|