Plugin Directory

Changeset 3337481


Ignore:
Timestamp:
07/31/2025 08:10:12 PM (8 months ago)
Author:
hippooo
Message:

1.5.15 - Customize Notifications

Location:
hippoo/trunk
Files:
1 added
3 edited

Legend:

Unmodified
Added
Removed
  • hippoo/trunk/app/web_api.php

    r3310002 r3337481  
    530530    return $response;
    531531}
     532
     533
     534/*
     535* Custom Event Notification API Route
     536*/
     537add_action('plugins_loaded', function () {
     538    if (class_exists('WC_REST_Controller')) {
     539        require_once __DIR__ . '/web_api_notification.php';
     540        $controller = new HippooEventNotificationController();
     541        $current_db_version = get_option('hippoo_notification_db_version');
     542        if ($current_db_version !== HippooEventNotificationController::DB_VERSION) {
     543            $controller->init_database();
     544        }
     545        $controller->register_hooks();
     546        add_action('rest_api_init', function () use ($controller) {
     547            $controller->register_routes();
     548        });
     549    }
     550}, 999);
  • hippoo/trunk/hippoo.php

    r3310002 r3337481  
    22/**
    33 * Plugin Name: Hippoo Mobile app for WooCommerce
    4  * Version: 1.5.14
     4 * Version: 1.5.15
    55 * Plugin URI: https://Hippoo.app/
    66 * Description: Best WooCommerce App Alternative – Manage orders and products on the go with real-time notifications, seamless order and product management, and powerful add-ons. Available for Android & iOS. 🚀.
     
    3030}
    3131
    32 define('hippoo_version', '1.5.13');
     32define('hippoo_version', '1.5.15');
    3333define('hippoo_path', dirname(__file__).DIRECTORY_SEPARATOR);
    3434define('hippoo_main_file_path', __file__);
  • hippoo/trunk/readme.txt

    r3310002 r3337481  
    55Requires at least: 5.3
    66Tested up to: 6.7
    7 Stable tag: 1.5.14
     7Stable tag: 1.5.15
    88License: GPL3
    99License URI: https://www.gnu.org/licenses/gpl-3.0.html
     
    7171
    7272== Changelog ==
     73* 1.5.15 - Customize Notifications
    7374* 1.5.14 - Minor Improvements
    7475* 1.5.13 - Fix scripts.js url
Note: See TracChangeset for help on using the changeset viewer.