Пример #1
0
<?php

require_once '../base.php';
require_once W2P_BASE_DIR . '/includes/main_functions.php';
if (version_compare(PHP_VERSION, MIN_PHP_VERSION, '<')) {
    echo 'web2Project requires PHP ' . MIN_PHP_VERSION . '+. Please upgrade!';
    die;
}
$step = trim(w2PgetParam($_POST, 'step', ''));
$manager = new w2p_System_UpgradeManager();
?>
<html>
	<head>
		<title>web2Project Update Manager</title>
		<meta name="Description" content="web2Project Update Manager">
        <link rel="stylesheet" type="text/css" href="../style/common.css" media="all" charset="utf-8"/>
	 	<link rel="stylesheet" type="text/css" href="../style/web2project/main.css" charset="utf-8"/>

        <style>
            .update {
                margin-top: 20px;
                width: 90%;
            }
            .update td {
                font-size: medium;
            }
            .update img {
                float: left;
            }
        </style>
Пример #2
0
 public function __construct()
 {
     parent::__construct();
     trigger_error(get_class($this) . " has been deprecated in v3.1 and will be removed by v4.0. Please use " . get_parent_class($this) . " instead.", E_USER_NOTICE);
 }