source: branches/version-2_13_0/data/class/pages/admin/order/LC_Page_Admin_Order_Multiple.php @ 23126

Revision 23126, 1.8 KB checked in by m_uehara, 11 years ago (diff)

#2348 r23116 - r23125 をマージ

  • Property svn:eol-style set to LF
  • Property svn:keywords set to Id
  • Property svn:mime-type set to text/x-httpd-php; charset=UTF-8
Line 
1
2<?php
3/*
4 * This file is part of EC-CUBE
5 *
6 * Copyright(c) 2000-2013 LOCKON CO.,LTD. All Rights Reserved.
7 *
8 * http://www.lockon.co.jp/
9 *
10 * This program is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU General Public License
12 * as published by the Free Software Foundation; either version 2
13 * of the License, or (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
23 */
24
25require_once CLASS_EX_REALDIR . 'page_extends/admin/LC_Page_Admin_Ex.php';
26
27/**
28 * 複数配送設定 のページクラス.
29 *
30 * @package Page
31 * @author Kentaro Ohkouchi
32 * @version $Id$
33 */
34class LC_Page_Admin_Order_Multiple extends LC_Page_Admin_Ex
35{
36    /**
37     * Page を初期化する.
38     *
39     * @return void
40     */
41    public function init()
42    {
43        parent::init();
44        $this->tpl_mainpage = 'order/multiple.tpl';
45        $this->tpl_mainno = 'order';
46        $this->tpl_subno = '';
47        $this->tpl_maintitle = '受注管理';
48        $this->tpl_subtitle = '複数配送設定';
49    }
50
51    /**
52     * Page のプロセス.
53     *
54     * @return void
55     */
56    public function process()
57    {
58        $this->action();
59        $this->sendResponse();
60    }
61
62    /**
63     * Page のアクション.
64     *
65     * @return void
66     */
67    public function action()
68    {
69        $this->setTemplate($this->tpl_mainpage);
70    }
71}
Note: See TracBrowser for help on using the repository browser.