| 1 | <?php |
|---|
| 2 | /* |
|---|
| 3 | * This file is part of EC-CUBE |
|---|
| 4 | * |
|---|
| 5 | * Copyright(c) 2000-2010 LOCKON CO.,LTD. All Rights Reserved. |
|---|
| 6 | * |
|---|
| 7 | * http://www.lockon.co.jp/ |
|---|
| 8 | * |
|---|
| 9 | * This program is free software; you can redistribute it and/or |
|---|
| 10 | * modify it under the terms of the GNU General Public License |
|---|
| 11 | * as published by the Free Software Foundation; either version 2 |
|---|
| 12 | * of the License, or (at your option) any later version. |
|---|
| 13 | * |
|---|
| 14 | * This program is distributed in the hope that it will be useful, |
|---|
| 15 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
|---|
| 16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|---|
| 17 | * GNU General Public License for more details. |
|---|
| 18 | * |
|---|
| 19 | * You should have received a copy of the GNU General Public License |
|---|
| 20 | * along with this program; if not, write to the Free Software |
|---|
| 21 | * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
|---|
| 22 | */ |
|---|
| 23 | //$_SERVER['REQUEST_METHOD'] = 'POST'; |
|---|
| 24 | //$_POST['mode'] = 'products_list'; |
|---|
| 25 | |
|---|
| 26 | if ($_SERVER['REQUEST_METHOD'] !== 'POST') { |
|---|
| 27 | header("HTTP/1.1 400 Bad Request"); |
|---|
| 28 | exit(); |
|---|
| 29 | } |
|---|
| 30 | |
|---|
| 31 | // {{{ requires |
|---|
| 32 | require_once '../require.php'; |
|---|
| 33 | require_once '../admin/require.php'; |
|---|
| 34 | |
|---|
| 35 | // }}} |
|---|
| 36 | // {{{ generate page |
|---|
| 37 | |
|---|
| 38 | $mode = isset($_POST['mode']) ? $_POST['mode'] : ''; |
|---|
| 39 | $objPage = lfPageFactory($mode); |
|---|
| 40 | $objPage->init(); |
|---|
| 41 | register_shutdown_function(array($objPage, "destroy")); |
|---|
| 42 | $objPage->process($mode); |
|---|
| 43 | |
|---|
| 44 | |
|---|
| 45 | function lfPageFactory($mode) { |
|---|
| 46 | $prefix = 'LC_Page_Upgrade_'; |
|---|
| 47 | $file = CLASS_PATH . "pages/upgrade/${prefix}"; |
|---|
| 48 | $class = $prefix; |
|---|
| 49 | |
|---|
| 50 | switch ($mode) { |
|---|
| 51 | case 'products_list': |
|---|
| 52 | $file .= 'ProductsList.php'; |
|---|
| 53 | $class .= 'ProductsList'; |
|---|
| 54 | break; |
|---|
| 55 | case 'patch_download': |
|---|
| 56 | case 'download': |
|---|
| 57 | case 'auto_update': |
|---|
| 58 | $file .= 'Download.php'; |
|---|
| 59 | $class .= 'Download'; |
|---|
| 60 | break; |
|---|
| 61 | case 'site_check': |
|---|
| 62 | $file .= 'SiteCheck.php'; |
|---|
| 63 | $class .= 'SiteCheck'; |
|---|
| 64 | break; |
|---|
| 65 | default: |
|---|
| 66 | header("HTTP/1.1 400 Bad Request"); |
|---|
| 67 | GC_Util::gfPrintLog("modeの値が正しくありません。:".$mode); |
|---|
| 68 | exit(); |
|---|
| 69 | break; |
|---|
| 70 | } |
|---|
| 71 | |
|---|
| 72 | require_once $file; |
|---|
| 73 | return new $class; |
|---|
| 74 | } |
|---|
| 75 | ?> |
|---|
| 76 | |
|---|