File: /var/www/ilya/data/www/irkboard.ru/admin/setup/applications/install/sections/eula.php
<?php
/**
* Invision Power Services
* IP.Board v3.0.1
* Installer: EULA file
* Last Updated: $LastChangedDate: 2009-02-04 15:03:36 -0500 (Wed, 04 Feb 2009) $
*
* @author $Author: bfarber $
* @copyright (c) 2001 - 2009 Invision Power Services, Inc.
* @license http://www.invisionpower.com/community/board/license.html
* @package Invision Power Board
* @link http://www.invisionpower.com
* @version $Rev: 3887 $
*
*/
class install_eula extends ipsCommand
{
/**
* Execute selected method
*
* @access public
* @param object Registry object
* @return void
*/
public function doExecute( ipsRegistry $registry )
{
/* Simply return the EULA page */
$this->registry->output->setTitle( "Соглашение" );
$this->registry->output->addContent( $this->registry->output->template()->page_eula() );
$this->registry->output->sendOutput();
}
}