| Server IP : 104.26.5.103 / Your IP : 216.73.216.4 Web Server : nginx/1.27.1 System : Linux in-5 5.15.0-143-generic #153-Ubuntu SMP Fri Jun 13 19:10:45 UTC 2025 x86_64 User : arabianexpress ( 1872) PHP Version : 8.0.30 Disable Function : exec,passthru,shell_exec,system,proc_open,popen,parse_ini_file,show_source MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /storage/v9321/highrangesfarmstay/public_html/wp-content/plugins/creame-whatsapp-me/ |
Upload File : |
<?php
/**
* Connect WordPress with WhatsApp
*
* @link https://crea.me
* @since 1.0.0
* @package Joinchat
*
* @wordpress-plugin
* Plugin Name: Joinchat
* Plugin URI: https://join.chat
* Description: Connects a WordPress chat with WhatsApp. The best solution for marketing and support. Stop losing customers and increase your sales.
* Version: 6.1.3
* Author: Creame
* Author URI: https://crea.me
* License: GPL-2.0+
* License URI: http://www.gnu.org/licenses/gpl-2.0.txt
* Text Domain: creame-whatsapp-me
* Domain Path: /languages
*/
// If this file is called directly, abort.
if ( ! defined( 'WPINC' ) ) {
die;
}
/**
* Define constants.
*/
define( 'JOINCHAT_VERSION', '6.1.3' );
define( 'JOINCHAT_SLUG', 'joinchat' );
define( 'JOINCHAT_FILE', __FILE__ );
define( 'JOINCHAT_DIR', plugin_dir_path( JOINCHAT_FILE ) );
define( 'JOINCHAT_BASENAME', plugin_basename( JOINCHAT_FILE ) );
/**
* The core plugin class that is used to define internationalization,
* admin-specific hooks, and public-facing site hooks.
*/
require JOINCHAT_DIR . 'includes/class-joinchat.php';
/**
* Begins execution of the plugin.
*
* Everything within the plugin is registered via hooks,
* but initiation is delayed to 'init' hook to allow extensions
* or third party plugins to change Joinchat behavior.
*
* @since 1.0.0
* @since 3.0.0 Replaced direct run() to launch via 'init' hook
*/
function run_joinchat() {
$plugin = new Joinchat();
add_action( 'init', array( $plugin, 'run' ) );
}
run_joinchat();