Server IP : 184.154.167.98 / Your IP : 52.15.209.178 Web Server : Apache System : Linux pink.dnsnetservice.com 4.18.0-553.22.1.lve.1.el8.x86_64 #1 SMP Tue Oct 8 15:52:54 UTC 2024 x86_64 User : puertode ( 1767) PHP Version : 7.2.34 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /home/puertode/public_html/wp-content/plugins/gspeech/ |
Upload File : |
<?php // no direct access! defined('ABSPATH') or die("No direct access"); /* Plugin Name: GSpeech Plugin URI: https://gspeech.io Description: GSpeech is a universal text to speech audio solution. See <a href="https://gspeech.io/demos">GSpeech Demo</a>. Please <a href="https://gspeech.io/contact-us">Contact Us</a> if you have any questions. Author: Text-To-Speech AI Audio Solutions Author URI: https://gspeech.io Version: 3.8.9 */ $gspeech_plugin_version = '3.8.9'; $gspeech_new_db_version = 145; define('GSPEECH_PLG_VERSION', $gspeech_plugin_version); define('GSPEECH_NEW_DB_VER', $gspeech_new_db_version); include('includes/gspeech_processor.php'); include('includes/gspeech_main.php'); include('includes/gspeech_widget.php'); include('includes/gspeech_notices.php'); include('includes/gspeech_frontend.php'); include('includes/gspeech_backend.php'); register_activation_hook(__FILE__, array('GSpeech', 'activate')); register_uninstall_hook(__FILE__, array('GSpeech', 'uninstall')); add_action('init', array('GSpeech', 'init')); add_action('widgets_init', array('GSpeech', 'register')); add_action('admin_menu', array('GSpeech_Admin', 'admin_menu')); add_action('admin_init', array('GSpeech_Admin', 'admin_init')); add_action('admin_init', array('GSpeech_Admin', 'admin_settings')); add_action('wp_enqueue_scripts', array('GSpeech_Front', 'load_scripts')); add_action('wp_loaded', array('GSpeech_Front', 'load_module')); add_action('wp_ajax_wpgsp_apply_feedback', array('GSpeech_Admin', 'wpgsp_apply_feedback')); add_action('wp_ajax_nopriv_wpgsp_apply_feedback', array('GSpeech_Admin', 'wpgsp_apply_feedback')); add_action('wp_ajax_wpgsp_apply_ajax_save', array('GSpeech_Admin', 'wpgsp_apply_ajax_save')); add_action('wp_ajax_nopriv_wpgsp_apply_ajax_save', array('GSpeech_Admin', 'wpgsp_apply_ajax_save')); add_filter('plugin_action_links_' . plugin_basename(__FILE__), array('GSpeech_Admin', 'plugin_action_links')); register_shutdown_function(array('GSpeech_Front', 'make_ob_end_flush'));