Changeset 19721


Ignore:
Timestamp:
2010/12/14 04:56:30 (13 years ago)
Author:
nanasess
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
Message:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_5-dev/data/class/helper/SC_Helper_Plugin.php

    r19711 r19721  
    11<?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 */ 
    223 
     24/** 
     25 * プラグインのヘルパークラス. 
     26 * 
     27 * @package Helper 
     28 * @version $Id$ 
     29 */ 
    330class SC_Helper_Plugin{ 
    431 
     
    734     * インスタンス化 
    835     */ 
    9     function load(LC_Page &$lcpage){ 
     36    function load(&$lcpage){ 
    1037        //データベースからクラス名を読み込む 
    1138        $objQuery = new SC_Query(); 
     
    3461    } 
    3562 
    36     function preProcess(LC_Page &$lcpage){ 
     63    function preProcess(&$lcpage){ 
    3764        //プラグインの名前を判別してページ内で有効なプラグインがあれば実行する 
    3865        $arrPluginList = SC_Helper_Plugin::load($lcpage); 
     
    4976     * 
    5077     */ 
    51     function process(LC_Page &$lcpage){ 
     78    function process(&$lcpage){ 
    5279        //プラグインの名前を判別してページ内で有効なプラグインがあれば実行する 
    5380        $arrPluginList = SC_Helper_Plugin::load($lcpage); 
Note: See TracChangeset for help on using the changeset viewer.