Changeset 1003623
- Timestamp:
- 10/08/2014 07:20:11 AM (11 years ago)
- Location:
- woocommerce-mpay24-gateway
- Files:
-
- 3 added
- 6 edited
-
assets/banner-1544x500.png (added)
-
assets/banner-772x250.png (modified) (previous)
-
assets/icon-128x128.png (added)
-
assets/icon-256x256.png (added)
-
trunk/class-wc-mpay24-shop.php (modified) (1 diff)
-
trunk/gateway-mpay24.php (modified) (4 diffs)
-
trunk/languages/wc-mpay24-de_DE.mo (modified) (previous)
-
trunk/languages/wc-mpay24-de_DE.po (modified) (4 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
woocommerce-mpay24-gateway/trunk/class-wc-mpay24-shop.php
r960002 r1003623 654 654 655 655 /** 656 * Write a mpay24 log into / plugins/woocommerce/logs/656 * Write a mpay24 log into /wp-content/plugins/woocommerce/logs/, since WC 2.2 /wc-logs 657 657 * @param string $operation The operation, which is to log: GetPaymentMethods, Pay, PayWithProfile, Confirmation, UpdateTransactionStatus, ClearAmount, CreditAmount, CancelTransaction, etc. 658 658 * @param string $info_to_log The information, which is to log: request, response, etc. -
woocommerce-mpay24-gateway/trunk/gateway-mpay24.php
r960002 r1003623 4 4 Plugin URI: http://wordpress.org/plugins/woocommerce-mpay24-gateway/ 5 5 Description: Add mPAY24 Payment Gateway to WooCommerce Plugin 6 Version: 1.4 6 Version: 1.4.1 7 7 Author: datenwerk innovationsagentur GmbH 8 8 Author URI: http://www.datenwerk.at 9 9 Requires at least: 3.5 10 Tested up to: 3.9.110 Tested up to: 4.0 11 11 */ 12 12 … … 22 22 23 23 if ( ! defined( 'GATEWAY_MPAY24_VERSION' ) ) { 24 define( 'GATEWAY_MPAY24_VERSION', '1.4 ' );24 define( 'GATEWAY_MPAY24_VERSION', '1.4.1' ); 25 25 } 26 26 if ( ! defined( 'GATEWAY_MPAY24_TABLE_NAME' ) ) { … … 301 301 'label' => __( 'Enable logging', 'wc-mpay24' ), 302 302 'type' => 'checkbox', 303 'description' => __( 'Log mPAY24 events inside <code>/ plugins/woocommerce/logs/</code>', 'wc-mpay24' ),303 'description' => __( 'Log mPAY24 events inside <code>/wp-content/plugins/woocommerce/logs/</code>, since WC 2.2 to WC_LOG_DIR (default: <code>/wc-logs/</code>)', 'wc-mpay24' ), 304 304 'default' => 'no' 305 305 … … 492 492 $shop->setLog( $this->log ); 493 493 } 494 495 $shop->setTid( $order_id);494 $tid = $order_id . '-' . sanitize_title( $order->billing_last_name ) . '-' . sanitize_title( $order->billing_first_name ); 495 $shop->setTid( substr( $tid, 0, 32 ) ); 496 496 $shop->setPrice( $order->order_total ); 497 497 $shop->setLanguage( $this->payment_page_lang ); -
woocommerce-mpay24-gateway/trunk/languages/wc-mpay24-de_DE.po
r960002 r1003623 3 3 "Project-Id-Version: WooCommerce mPAY24 Gateway v1.4\n" 4 4 "Report-Msgid-Bugs-To: \n" 5 "POT-Creation-Date: 2014- 08-04 16:15+0100\n"6 "PO-Revision-Date: 2014- 08-04 16:15+0100\n"5 "POT-Creation-Date: 2014-10-08 09:15+0100\n" 6 "PO-Revision-Date: 2014-10-08 09:16+0100\n" 7 7 "Last-Translator: Melanie Reichel <[email protected]>\n" 8 8 "Language-Team: datenwerk innovationsagentur GmbH <wordpressdev@datenwerk." … … 18 18 "X-Poedit-Basepath: .\n" 19 19 "X-Textdomain-Support: yes\n" 20 "X-Generator: Poedit 1.6. 7\n"20 "X-Generator: Poedit 1.6.9\n" 21 21 "X-Poedit-SearchPath-0: .\n" 22 22 "X-Poedit-SearchPath-1: ..\n" … … 24 24 # @ wc-mpay24 25 25 #: ../gateway-mpay24.php:88 ../gateway-mpay24.php:92 26 #, fuzzy27 26 msgid "" 28 27 "<strong>mPAY24 gateway is installed</strong> – Configure the setting " … … 202 201 # @ wc-mpay24 203 202 #: ../gateway-mpay24.php:303 204 msgid "Log mPAY24 events inside <code>/plugins/woocommerce/logs/</code>" 205 msgstr "" 206 "Protokolliert mPAY24 Ereignisse nach <code>/plugins/woocommerce/logs/</code>" 203 msgid "" 204 "Log mPAY24 events inside <code>/wp-content/plugins/woocommerce/logs/</code>, " 205 "since WC 2.2 to WC_LOG_DIR (default: <code>/wc-logs/</code>)" 206 msgstr "" 207 "Protokolliert mPAY24 Ereignisse nach <code>/wp-content/plugins/woocommerce/" 208 "logs/</code>, seit WC 2.2 nach WC_LOG_DIR (Standard: <code>/wc-logs/</code>)" 207 209 208 210 # @ wc-mpay24 -
woocommerce-mpay24-gateway/trunk/readme.txt
r960005 r1003623 6 6 Requires at least: 3.5 7 7 Tested up to: 3.9.1 8 Stable tag: 1.4 8 Stable tag: 1.4.1 9 9 License: GNU General Public License v3.0 10 10 License URI: http://www.gnu.org/licenses/gpl-3.0.html … … 77 77 == Changelog == 78 78 79 = 1.4.1 - 2014-10-08 = 80 81 * Enhancement: TID contains now order->id, order->billing_last_name and order->billing_first_name with totally maximum 32 characters (limitation of mPAY24) 82 * Enhancement: update help text about log directory 83 * add new plugin banner and icon (WP 4.0 Plugin Installer) 84 79 85 = 1.4 - 2014-08-04 = 80 86
Note: See TracChangeset
for help on using the changeset viewer.