Current Path : /var/www/html/clients/rebirth.e-nk.ru/sources/action_admin/ |
Current File : /var/www/html/clients/rebirth.e-nk.ru/sources/action_admin/support.php |
<?php /* +-------------------------------------------------------------------------- | Invision Power Board | ============================================= | by Matthew Mecham | (c) 2001 - 2006 Invision Power Services, Inc. | Nullified by Terabyte | ============================================= | | +--------------------------------------------------------------------------- | > $Date: 2006-03-23 07:34:25 -0500 (Thu, 23 Mar 2006) $ | > $Revision: 177 $ | > $Author: brandon $ +--------------------------------------------------------------------------- | | > Support Module | > Module written by Brandon Farber | > Date started: 19th April 2006 | | > Module Version Number: 1.0.0 +-------------------------------------------------------------------------- */ if ( ! defined( 'IN_ACP' ) ) { print "<h1>Incorrect access</h1>You cannot access this file directly. If you have recently upgraded, make sure you upgraded 'admin.php'."; exit(); } class ad_support { var $base_url; /** * Section title name * * @var string */ var $perm_main = "help"; /** * Section title name * * @var string */ var $perm_child = "support"; function auto_run() { $this->ipsclass->admin->nav[] = array( $this->ipsclass->form_code, 'Support' ); //----------------------------------------- switch($this->ipsclass->input['code']) { //----------------------------------------- default: $this->ipsclass->admin->page_detail = "<div align=center> <b>Nullified by Terabyte</b> </div>"; $this->ipsclass->admin->page_title = "<font color=\"#ff0000\"><b>Nullified by Terabyte</b></font>"; $this->ipsclass->admin->cp_permission_check( $this->perm_main.'|'.$this->perm_child.':view' ); $this->ipsclass->admin->show_inframe( '' ); break; } } } ?>