Файл: admin/applications/core/setup/versions/upg_33010/version_class.php
Строк: 72
<?php
/**
* <pre>
* Invision Power Services
* IP.Board v3.3.3
* Upgrade Class
*
* Class to add options and notices for IP.Board upgrade
* Last Updated: $Date: 2011-05-25 19:58:10 +0100 (Wed, 25 May 2011) $
* </pre>
*
* @author Matt Mecham <matt@invisionpower.com>
* @version $Rev: 8891 $
* @since 3.0
* @copyright (c) 2001 - 2009 Invision Power Services, Inc.
* @license http://www.invisionpower.com/company/standards.php#license
* @link http://www.invisionpower.com
* @package IP.Board
*/
class version_class_core_33010
{
/**
* Constructor
*
* @param object $registry Registry object
* @return @e void
*/
public function __construct( ipsRegistry $registry )
{
/* Make object */
$this->registry = $registry;
$this->DB = $this->registry->DB();
$this->settings =& $this->registry->fetchSettings();
$this->request =& $this->registry->fetchRequest();
$this->cache = $this->registry->cache();
$this->caches =& $this->registry->cache()->fetchCaches();
}
/**
* Add pre-upgrade options: Form
*
* @return string HTML block
*/
public function preInstallOptionsForm()
{
return '';
}
/**
* Add pre-upgrade options: Save
*
* Data will be saved in saved data array as: appOptions[ app ][ versionLong ] = ( key => value );
*
* @return array Key / value pairs to save
*/
public function preInstallOptionsSave()
{
return array();
}
/**
* Return any post-installation notices
*
* @return array Array of notices
*/
public function postInstallNotices()
{
return array();
}
/**
* Return any pre-installation notices
*
* @return array Array of notices
*/
public function preInstallNotices()
{
return array( "Внимание поддержка входа по OpenID удалена в 3.3.0 версии. Это недолжно отразиться на работе вашего форума, если вы не включали данный метод входа." );
}
}