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

网络

开发平台:

Unix_Linux

  1. <?php
  2. /**
  3. * Joomla Community Builder
  4. * @version $Id: admin.comprofiler.php 610 2006-12-13 17:33:44Z beat $
  5. * @package Community Builder
  6. * @subpackage admin.comprofiler.php
  7. * @author JoomlaJoe and Beat, database check function by Nick
  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. // ensure this file is being included by a parent file
  12. if ( ! ( defined( '_VALID_CB' ) || defined( '_JEXEC' ) || defined( '_VALID_MOS' ) ) ) { die( 'Direct Access to this location is not allowed.' ); }
  13. global $_CB_Admin_Done;
  14. if ( $_CB_Admin_Done ) {
  15. echo $_CB_Admin_Done;
  16. } else {
  17. if ( defined( 'JPATH_ADMINISTRATOR' ) ) {
  18. $_CB_joomla_adminpath = JPATH_ADMINISTRATOR;
  19. } else {
  20. global $mainframe;
  21. $_CB_joomla_adminpath = $mainframe->getCfg( 'absolute_path' ). "/administrator";
  22. }
  23. require( $_CB_joomla_adminpath . '/components/com_comprofiler/admin.comprofiler.controller.php' );
  24. $_CB_Admin_Done = true;
  25. }
  26. ?>