Zikula_Template_Plugins
[ class tree: Zikula_Template_Plugins ] [ index: Zikula_Template_Plugins ] [ all elements ]

Source for file function.languagelist.php

Documentation is available at function.languagelist.php

  1. <?php
  2. /**
  3.  * Zikula Application Framework
  4.  *
  5.  * @copyright (c) 2004, Zikula Development Team
  6.  * @link http://www.zikula.org
  7.  * @version $Id: function.languagelist.php 24342 2008-06-06 12:03:14Z markwest $
  8.  * @license GNU/GPL - http://www.gnu.org/copyleft/gpl.html
  9.  * @package Zikula_Template_Plugins
  10.  * @subpackage Functions
  11.  */
  12.  
  13. /**
  14.  * Smarty function to display a drop down list of languages
  15.  *
  16.  * This plugin as been superceded by html_select_languages
  17.  *
  18.  * @author       Mark West
  19.  * @since        25 April 2004
  20.  * @deprecated
  21.  * @param        array       $params      All attributes passed to this function from the template
  22.  * @param        object      &$smarty     Reference to the Smarty object
  23.  * @return       string      the value of the last status message posted, or void if no status message exists
  24.  */
  25. function smarty_function_languagelist($params&$smarty)
  26. {
  27.     require_once $smarty->_get_plugin_filepath('function','html_select_languages');
  28.     return smarty_function_html_select_languages($params$smarty);
  29. }

Documentation generated on Fri, 18 Jul 2008 21:45:27 +0200 by phpDocumentor 1.4.1