eZ Publish  [trunk]
image.php
Go to the documentation of this file.
00001 <?php
00002 /**
00003  * File containing the imageInit() function.
00004  *
00005  * @copyright Copyright (C) 1999-2012 eZ Systems AS. All rights reserved.
00006  * @license http://www.gnu.org/licenses/gpl-2.0.txt GNU General Public License v2
00007  * @version //autogentag//
00008  * @package kernel
00009  */
00010 
00011 /**
00012  * Image manager instance
00013  *
00014  * @package kernel
00015  * @deprecated Deprecated as of 4.3, use {@link eZImageManager::factory()} instead.
00016  */
00017 
00018 function imageInit()
00019 {
00020     eZDebug::writeStrict( 'Function imageInit() has been deprecated in 4.3 in favor of eZImageManager::factory()', 'Deprecation' );
00021     return eZImageManager::factory();
00022 }
00023 
00024 ?>