eZ Publish  [trunk]
i18n.php
Go to the documentation of this file.
00001 <?php
00002 /**
00003  * @copyright Copyright (C) 1999-2012 eZ Systems AS. All rights reserved.
00004  * @license http://www.gnu.org/licenses/gpl-2.0.txt GNU General Public License v2
00005  * @version //autogentag//
00006  * @package kernel
00007  */
00008 
00009 /**
00010  * @deprecated Since 4.3, superseded by {@link ezpI18n::tr()}
00011  *             Will be kept for compatability in 4.x.
00012  */
00013 function ezi18n( $context, $source, $comment = null, $arguments = null )
00014 {
00015     eZDebug::writeStrict( 'Function ezi18n() has been deprecated in 4.3 in favor of ezpI18n::tr()', 'Deprecation' );
00016     return ezpI18n::tr( $context, $source, $comment, $arguments );
00017 }
00018 
00019 /**
00020  * @deprecated Since 4.3, superseded by {@link ezpI18n::tr()} instead
00021  *             Will be kept for compatability in 4.x.
00022  */
00023 function ezx18n( $extension, $context, $source, $comment = null, $arguments = null )
00024 {
00025     eZDebug::writeStrict( 'Function ezx18n() has been deprecated in 4.3 in favor of ezpI18n::tr()', 'Deprecation' );
00026     return ezpI18n::tr( $context, $source, $comment, $arguments );
00027 }
00028 
00029 ?>