english.php
上传用户:stephen_wu
上传日期:2008-07-05
资源大小:1757k
文件大小:1k
源码类别:

网络

开发平台:

Unix_Linux

  1. <?php
  2. /*************************************************************
  3. * Joomla Community Builder Backwards compatibility file: RC2 only! will be removed!
  4. * @version $Id: english.php 41 2006-01-11 23:36:58Z beat $
  5. * @package Community Builder
  6. * @subpackage comprofiler.class.php
  7. * @author JoomlaJoe and Beat
  8. * @copyright (C) JoomlaJoe and Beat, www.joomlapolis.com
  9. * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU/GPL version 2
  10. */
  11. if ( ! ( defined( '_VALID_CB' ) || defined( '_JEXEC' ) || defined( '_VALID_MOS' ) ) ) { die( 'Direct Access to this location is not allowed.' ); }
  12. global $mainframe; // KEEP $mainframe on purpose as this file can be included from elsewhere.
  13. $UElanguagePath = $mainframe->getCfg( 'absolute_path' ).'/components/com_comprofiler/plugin/language';
  14. if ( file_exists( $UElanguagePath.'/' . $mainframe->getCfg( 'lang' ) . '/' . $mainframe->getCfg( 'lang' ) . '.php' ) ) {
  15. include_once( $UElanguagePath . '/' . $mainframe->getCfg( 'lang' ) . '/' . $mainframe->getCfg( 'lang' ) . '.php' );
  16. } else {
  17. include_once( $UElanguagePath . '/default_language/default_language.php' );
  18. }
  19. ?>