Skip to content

Commit

Permalink
Merge branch 'master' into fix-valid-url
Browse files Browse the repository at this point in the history
  • Loading branch information
nanasess authored Jan 11, 2025
2 parents 7daf3e4 + 312fd1d commit 6acf1b3
Show file tree
Hide file tree
Showing 6 changed files with 99 additions and 7 deletions.
4 changes: 0 additions & 4 deletions data/Smarty/templates/sphone/cart/index.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -82,10 +82,6 @@

<form name="form<!--{$key}-->" id="form<!--{$key}-->" method="post" action="<!--{$smarty.const.CART_URL|h}-->">
<input type="hidden" name="<!--{$smarty.const.TRANSACTION_ID_NAME}-->" value="<!--{$transactionid}-->" />
<!--{if 'sfGMOCartDisplay'|function_exists}-->
<!--{'sfGMOCartDisplay'|call_user_func}-->
<!--{/if}-->

<input type="hidden" name="mode" value="confirm" />
<input type="hidden" name="cart_no" value="" />
<input type="hidden" name="cartKey" value="<!--{$key|h}-->" />
Expand Down
3 changes: 0 additions & 3 deletions data/Smarty/templates/sphone/mypage/change.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,6 @@
<dl class="form_entry">
<!--{include file="`$smarty.const.SMARTPHONE_TEMPLATE_REALDIR`frontparts/form_personal_input.tpl" flgFields=3 emailMobile=true prefix=""}-->
</dl>
<!--{if 'sfGMOMypageDisplay'|function_exists}-->
<!--{'sfGMOMypageDisplay'|call_user_func}-->
<!--{/if}-->
<div class="btn_area">
<p><input type="submit" class="btn data-role-none" value="確認ページへ" name="refusal" id="refusal" /></p>
</div>
Expand Down
3 changes: 3 additions & 0 deletions data/class_extends/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,3 +36,6 @@ EC-CUBE2.17.2 までは、 [data/class](../class/) 以下すべてのクラス
- [data/class_extends/page_extends/mypage/LC_Page_AbstractMypage_Ex.php](page_extends/mypage/LC_Page_AbstractMypage_Ex.php)
- [data/class_extends/page_extends/LC_Page_Ex.php](page_extends/LC_Page_Ex.php)
- [data/class_extends/page_extends/admin/LC_Page_Admin_Ex.php](page_extends/admin/LC_Page_Admin_Ex.php)
- [data/class_extends/page_extends/shopping/LC_Page_Shopping_Payment_Ex.php](page_extends/shopping/LC_Page_Shopping_Payment_Ex.php)
- [data/class_extends/page_extends/shopping/LC_Page_Shopping_LoadPaymentModule_Ex.php](page_extends/shopping/LC_Page_Shopping_LoadPaymentModule_Ex.php)
- [data/class_extends/SC_Display_Ex.php](SC_Display_Ex.php)
32 changes: 32 additions & 0 deletions data/class_extends/SC_Display_Ex.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
<?php
/*
* This file is part of EC-CUBE
*
* Copyright(c) EC-CUBE CO.,LTD. All Rights Reserved.
*
* http://www.ec-cube.co.jp/
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/

require_once CLASS_REALDIR.'SC_Display.php';

/*
* 決済モジュールやプラグイン、 user_data 以下の PHP で require されているため削除しないでください
*/

class SC_Display_Ex extends SC_Display
{
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
<?php
/*
* This file is part of EC-CUBE
*
* Copyright(c) EC-CUBE CO.,LTD. All Rights Reserved.
*
* http://www.ec-cube.co.jp/
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/

require_once CLASS_REALDIR.'pages/shopping/LC_Page_Shopping_LoadPaymentModule.php';

/*
* 決済モジュールやプラグイン、 user_data 以下の PHP で require されているため削除しないでください
*/

class LC_Page_Shopping_LoadPaymentModule_Ex extends LC_Page_Shopping_LoadPaymentModule
{
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
<?php
/*
* This file is part of EC-CUBE
*
* Copyright(c) EC-CUBE CO.,LTD. All Rights Reserved.
*
* http://www.ec-cube.co.jp/
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/

require_once CLASS_REALDIR.'pages/shopping/LC_Page_Shopping_Payment.php';

/*
* 決済モジュールやプラグイン、 user_data 以下の PHP で require されているため削除しないでください
*/

class LC_Page_Shopping_Payment_Ex extends LC_Page_Shopping_Payment
{
}

0 comments on commit 6acf1b3

Please sign in to comment.