Файл: IPBMafia.ru_IPB_3.4.6_Final_Rus _Nulled/board/upload/admin/applications/core/modules_admin/tools/logsSplash.php
Строк: 53
<?php
/**
* <pre>
* Invision Power Services
* IP.Board v3.4.6
* Log Splash Screen
* Last Updated: $LastChangedDate: 2012-05-10 16:10:13 -0400 (Thu, 10 May 2012) $
* </pre>
*
* @author $Author: bfarber $
* @copyright (c) 2001 - 2009 Invision Power Services, Inc.
* @license http://www.invisionpower.com/company/standards.php#license
* @package IP.Board
* @subpackage Core
* @link http://www.invisionpower.com
* @since 27th January 2004
* @version $Rev: 10721 $
*/
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 admin_core_tools_logsSplash extends ipsCommand
{
/**
* Skin object
*
* @var object Skin templates
*/
protected $html;
/**#@+
* URL bits
*
* @var string
*/
public $form_code = '';
public $form_code_js = '';
/**#@-*/
/**
* Main class entry point
*
* @param object ipsRegistry reference
* @return @e void [Outputs to screen]
*/
public function doExecute( ipsRegistry $registry )
{
/* Load Template */
$this->html = $this->registry->output->loadTemplate( 'cp_skin_adminlogs' );
/* Load Language */
$this->registry->getClass('class_localization')->loadLanguageFile( array( 'admin_logs' ) );
/* URL Bits */
$this->form_code = $this->html->form_code = 'module=logs&section=splash';
$this->form_code_js = $this->html->form_code_js = 'module=logs§ion=splash';
/* Get the splash screen */
$this->registry->output->html .= $this->html->logSplashScreen();
/* Output */
$this->registry->output->html_main .= $this->registry->output->global_template->global_frame_wrapper();
$this->registry->output->sendOutput();
}
}