update v1.0.7.9 R.C.
This is a Release Candidate. We are still testing.
This commit is contained in:
69
vendor/zendframework/zend-validator/src/Translator/TranslatorAwareInterface.php
vendored
Normal file
69
vendor/zendframework/zend-validator/src/Translator/TranslatorAwareInterface.php
vendored
Normal file
@@ -0,0 +1,69 @@
|
||||
<?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\Validator\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 self
|
||||
*/
|
||||
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 self
|
||||
*/
|
||||
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();
|
||||
}
|
21
vendor/zendframework/zend-validator/src/Translator/TranslatorInterface.php
vendored
Normal file
21
vendor/zendframework/zend-validator/src/Translator/TranslatorInterface.php
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
<?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\Validator\Translator;
|
||||
|
||||
interface TranslatorInterface
|
||||
{
|
||||
/**
|
||||
* @param string $message
|
||||
* @param string $textDomain
|
||||
* @param string $locale
|
||||
* @return string
|
||||
*/
|
||||
public function translate($message, $textDomain = 'default', $locale = null);
|
||||
}
|
Reference in New Issue
Block a user