Changeset 16969


Ignore:
Timestamp:
2008/01/09 17:27:41 (16 years ago)
Author:
satou
Message:

[オペビルダー連携モジュール]モジュール対応のため

Location:
branches/feature-module-update/data
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • branches/feature-module-update/data/Smarty/templates/default/detail.tpl

    r16583 r16969  
    194194    </div> 
    195195  </div> 
     196  <!--{* オペビルダー用 *}--> 
     197  <!--{if "sfViewDetailOpe"|function_exists === TRUE}--> 
     198  <!--{include file=`$smarty.const.MODULE_PATH`mdl_opebuilder/detail_ope_view.tpl}--> 
     199  <!--{/if}--> 
    196200  <!--詳細ここまで--> 
    197201 
  • branches/feature-module-update/data/Smarty/templates/default/mobile/products/detail.tpl

    r16582 r16969  
    3131<!--詳細ここから--> 
    3232<!--{assign var=key value="main_image"}--> 
     33<!--{* オペビルダー用 *}--> 
     34<!--{if "sfViewDetailOpe"|function_exists === TRUE}--> 
     35<!--{include file=`$smarty.const.MODULE_PATH`mdl_opebuilder/detail_ope_mb_view.tpl}--> 
     36<!--{else}--> 
    3337<img src="<!--{$arrFile[$key].filepath}-->"><br> 
     38<!--{/if}--> 
    3439<!--★詳細メインコメント★--> 
    3540[emoji:76]<!--{$arrProduct.main_comment|nl2br}--><br> 
  • branches/feature-module-update/data/class/pages/admin/products/LC_Page_Admin_Products_Product.php

    r16955 r16969  
    104104 
    105105        // FORMデータの引き継ぎ 
     106        $this->arrForm['status'] = DEFAULT_PRODUCT_DISP;    // 公開・非公開のデフォルト値 
    106107        $this->arrForm = $_POST; 
    107108 
     
    206207            break; 
    207208        default: 
    208             // 公開・非公開のデフォルト値 
    209             $this->arrForm['status'] = DEFAULT_PRODUCT_DISP; 
    210209            $this->lfProductPage();     // 商品登録ページ 
    211210            break; 
  • branches/feature-module-update/data/include/module.inc

    r16930 r16969  
    121121} 
    122122 
     123/*------------- ▼オペビルダー連携 -------------*/ 
     124if (file_exists(MODULE_PATH. "mdl_opebuilder/include.php") === TRUE) { 
     125    require_once(MODULE_PATH. "mdl_opebuilder/include.php"); 
     126} 
     127 
    123128?> 
Note: See TracChangeset for help on using the changeset viewer.