Changeset 19721
- Timestamp:
- 2010/12/14 04:56:30 (12 years ago)
- bzr:base-revision:
- ohkouchi@loop-az.jp-20101213102624-oor1suvy6ma2cnfx
- bzr:committer:
- Kentaro Ohkouchi <nanasess@fsm.ne.jp>
- bzr:file-ids:
data/class/helper/SC_Helper_Plugin.php 18913@1e3b908f-19a9-db11-a64c-001125224ba8:branches%2Fcamp%2Fcamp-2_5-E%2Fdata%2Fclass%2Fhelper%2FSC_Helper_Plugin.php- bzr:mapping-version:
- v4
- bzr:repository-uuid:
- 1e3b908f-19a9-db11-a64c-001125224ba8
- bzr:revision-id:
- nanasess@fsm.ne.jp-20101213195626-w9aix1ioq9h42puh
- bzr:revno:
- 2450
- bzr:revprop:branch-nick:
- branches/version-2_5-dev
- bzr:root:
- branches/version-2_5-dev
- bzr:timestamp:
- 2010-12-14 04:56:26.630000114 +0900
- bzr:user-agent:
- bzr2.2.1+bzr-svn1.0.4
- svn:original-date:
- 2010-12-13T19:56:26.630000Z
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/version-2_5-dev/data/class/helper/SC_Helper_Plugin.php
r19711 r19721 1 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 */ 2 23 24 /** 25 * プラグインのヘルパークラス. 26 * 27 * @package Helper 28 * @version $Id$ 29 */ 3 30 class SC_Helper_Plugin{ 4 31 … … 7 34 * インスタンス化 8 35 */ 9 function load( LC_Page&$lcpage){36 function load(&$lcpage){ 10 37 //データベースからクラス名を読み込む 11 38 $objQuery = new SC_Query(); … … 34 61 } 35 62 36 function preProcess( LC_Page&$lcpage){63 function preProcess(&$lcpage){ 37 64 //プラグインの名前を判別してページ内で有効なプラグインがあれば実行する 38 65 $arrPluginList = SC_Helper_Plugin::load($lcpage); … … 49 76 * 50 77 */ 51 function process( LC_Page&$lcpage){78 function process(&$lcpage){ 52 79 //プラグインの名前を判別してページ内で有効なプラグインがあれば実行する 53 80 $arrPluginList = SC_Helper_Plugin::load($lcpage);
Note: See TracChangeset
for help on using the changeset viewer.