Plugin Directory

Changeset 3223359


Ignore:
Timestamp:
01/16/2025 05:41:50 AM (14 months ago)
Author:
webtonative
Message:

Deploy plugin version 2.6

Location:
webtonative/trunk
Files:
1 added
1 deleted
3 edited

Legend:

Unmodified
Added
Removed
  • webtonative/trunk/README.md

    r3219574 r3223359  
    44Requires at least: 2.0.2
    55Tested up to: 6.7.1
    6 Stable tag: 2.5
     6Stable tag: 2.6
    77License: GPLv2 or later
    88
  • webtonative/trunk/index.php

    r3219574 r3223359  
    33  Plugin Name: webtonative
    44  Description: webtonative Plugin
    5   Version: 2.5
     5  Version: 2.6
    66  Author: webtonative
    77*/
  • webtonative/trunk/simple-iap/simple-iap.php

    r3219574 r3223359  
    44 * Plugin Name: Simple IAP
    55 * Description: A plugin to handle IAP purchases with verification.
    6  * Version: 1.1
     6 * Version: 1.2
    77 * Author: WebtoNative
    88 */
     
    1818    add_submenu_page(
    1919        'options-general.php',
    20         'Simple IAP Settings',
    21         'WTN Simple IAP',
     20        'IAP Settings',
     21        'WTN IAP (In-App Purchase)',
    2222        'manage_options',
    2323        'simple-iap-settings',
     
    6464?>
    6565    <div class="wrap">
    66         <h1>Simple IAP Settings</h1>
     66        <h1>WTN IAP (In-App Purchase) Settings</h1>
    6767        <form method="post" action="options.php">
    6868            <?php
     
    8080// Enqueue scripts
    8181add_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);
    8383
    8484    wp_localize_script('simple-iap-js', 'simpleIAPData', [
     
    8989
    9090// Shortcode for IAP button
    91 add_shortcode('simple_iap', function ($atts) {
     91add_shortcode('wtn_iap', function ($atts) {
    9292    $atts = shortcode_atts([
    9393        'google_play_id' => '',
Note: See TracChangeset for help on using the changeset viewer.