admin.comprofiler.php
上传用户:stephen_wu
上传日期:2008-07-05
资源大小:1757k
文件大小:1k
- <?php
- /**
- * Joomla Community Builder
- * @version $Id: admin.comprofiler.php 610 2006-12-13 17:33:44Z beat $
- * @package Community Builder
- * @subpackage admin.comprofiler.php
- * @author JoomlaJoe and Beat, database check function by Nick
- * @copyright (C) JoomlaJoe and Beat, www.joomlapolis.com
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU/GPL version 2
- */
- // ensure this file is being included by a parent file
- if ( ! ( defined( '_VALID_CB' ) || defined( '_JEXEC' ) || defined( '_VALID_MOS' ) ) ) { die( 'Direct Access to this location is not allowed.' ); }
- global $_CB_Admin_Done;
- if ( $_CB_Admin_Done ) {
- echo $_CB_Admin_Done;
- } else {
- if ( defined( 'JPATH_ADMINISTRATOR' ) ) {
- $_CB_joomla_adminpath = JPATH_ADMINISTRATOR;
- } else {
- global $mainframe;
- $_CB_joomla_adminpath = $mainframe->getCfg( 'absolute_path' ). "/administrator";
- }
- require( $_CB_joomla_adminpath . '/components/com_comprofiler/admin.comprofiler.controller.php' );
- $_CB_Admin_Done = true;
- }
- ?>