Changeset 3223359
- Timestamp:
- 01/16/2025 05:41:50 AM (14 months ago)
- Location:
- webtonative/trunk
- Files:
-
- 1 added
- 1 deleted
- 3 edited
-
README.md (modified) (1 diff)
-
index.php (modified) (1 diff)
-
simple-iap/js/simple-iap.js (deleted)
-
simple-iap/js/wtn-iap.js (added)
-
simple-iap/simple-iap.php (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
webtonative/trunk/README.md
r3219574 r3223359 4 4 Requires at least: 2.0.2 5 5 Tested up to: 6.7.1 6 Stable tag: 2. 56 Stable tag: 2.6 7 7 License: GPLv2 or later 8 8 -
webtonative/trunk/index.php
r3219574 r3223359 3 3 Plugin Name: webtonative 4 4 Description: webtonative Plugin 5 Version: 2. 55 Version: 2.6 6 6 Author: webtonative 7 7 */ -
webtonative/trunk/simple-iap/simple-iap.php
r3219574 r3223359 4 4 * Plugin Name: Simple IAP 5 5 * Description: A plugin to handle IAP purchases with verification. 6 * Version: 1. 16 * Version: 1.2 7 7 * Author: WebtoNative 8 8 */ … … 18 18 add_submenu_page( 19 19 'options-general.php', 20 ' SimpleIAP Settings',21 'WTN Simple IAP',20 'IAP Settings', 21 'WTN IAP (In-App Purchase)', 22 22 'manage_options', 23 23 'simple-iap-settings', … … 64 64 ?> 65 65 <div class="wrap"> 66 <h1> Simple IAPSettings</h1>66 <h1>WTN IAP (In-App Purchase) Settings</h1> 67 67 <form method="post" action="options.php"> 68 68 <?php … … 80 80 // Enqueue scripts 81 81 add_action('wp_enqueue_scripts', function () { 82 wp_enqueue_script('simple-iap-js', plugin_dir_url(__FILE__) . 'js/ simple-iap.js', [], '1.1', true);82 wp_enqueue_script('simple-iap-js', plugin_dir_url(__FILE__) . 'js/wtn-iap.js', [], '1.1', true); 83 83 84 84 wp_localize_script('simple-iap-js', 'simpleIAPData', [ … … 89 89 90 90 // Shortcode for IAP button 91 add_shortcode(' simple_iap', function ($atts) {91 add_shortcode('wtn_iap', function ($atts) { 92 92 $atts = shortcode_atts([ 93 93 'google_play_id' => '',
Note: See TracChangeset
for help on using the changeset viewer.