PluginProbe
WANotifier for Forms and Actions / 2.0.1
WANotifier for Forms and Actions v2.0.1
3.1.0 3.0.4 2.7.10 2.7.11 2.7.12 2.7.13 2.7.2 2.7.3 2.7.4 2.7.5 2.7.6 2.7.7 2.7.8 2.7.9 3.0.0 3.0.1 3.0.2 3.0.3 trunk 0.1.0 0.1.1 1.0.0 1.0.1 1.0.2 1.0.3 All 66 releases
notifier / notifier.php

notifier.php in WANotifier for Forms and Actions 2.0.1, at notifier.php

44 lines 982 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Plugin Name: WANotifier - Send Message Notifications Using Cloud API
4 * Plugin URI: https://wordpress.org/plugins/notifier/
5 * Description: Send WhatsApp message notifications for Woocommerce orders, Gravity Forms and Contact Form 7 subsmissions using the official WhatsApp Cloud APIs.
6 * Version: 2.0.1
7 * Author: WANotifier.com
8 * Author URI: https://wanotifier.com
9 * Text Domain: notifier
10 * Requires at least: 5.7
11 * Requires PHP: 7.4
12 */
13
14 // If this file is called directly, abort.
15 if ( ! defined( 'WPINC' ) ) {
16 die;
17 }
18
19 /**
20 * Define constants
21 */
22 if ( ! defined( 'NOTIFIER_FILE' ) ) {
23 define( 'NOTIFIER_FILE', __FILE__ );
24 }
25
26 if ( ! defined( 'NOTIFIER_PATH' ) ) {
27 define('NOTIFIER_PATH', plugin_dir_path( __FILE__ ));
28 }
29
30 /**
31 * Load the core plugin file.
32 */
33 require NOTIFIER_PATH . 'includes/class-notifier.php';
34
35 /**
36 * Begin execution of the plugin.
37 *
38 * @since 0.1
39 */
40 function run_notifier() {
41 $plugin = Notifier::get_instance();
42 }
43 run_notifier();
44