REDROOM
PHP 8.0.30
Path:
Logout
Edit File
Size: 6.99 KB
Close
/home/certprox/template.certproxywizard.com/wp-content/plugins/hostinger-ai-assistant/hostinger-ai-assistant.php
Text
Base64
<?php /** * The plugin bootstrap file * * This file is read by WordPress to generate the plugin information in the plugin * admin area. This file also includes all of the dependencies used by the plugin, * registers the activation and deactivation functions, and defines a function * that starts the plugin. * * @link https://hostinger.com * @since 1.0.0 * @package Hostinger_AI * * @wordpress-plugin * Plugin Name: Hostinger AI * Plugin URI: https://hostinger.com * Description: Hostinger AI plugin for WordPress. * Version: 3.0.40 * Author: Hostinger * Requires PHP: 8.1 * Requires at least: 5.0 * Tested up to: 6.9 * Author URI: https://hostinger.com * License: GPL-2.0+ * License URI: http://www.gnu.org/licenses/gpl-2.0.txt * Text Domain: hostinger-ai-assistant * Domain Path: /languages */ use Hostinger\Surveys\Loader; use Hostinger\WpMenuManager\Manager; // If this file is called directly, abort. if ( ! defined( 'WPINC' ) ) { die; } /** * Currently plugin version. */ define( 'HOSTINGER_AI_PLUGIN_VERSION', '3.0.40' ); /** * Plugin path. */ if ( ! defined( 'HOSTINGER_AI_ASSISTANT_ABSPATH' ) ) { define( 'HOSTINGER_AI_ASSISTANT_ABSPATH', plugin_dir_path( __FILE__ ) ); } /** * Plugin file path. */ if ( ! defined( 'HOSTINGER_AI_ASSISTANT_PLUGIN_FILE' ) ) { define( 'HOSTINGER_AI_ASSISTANT_PLUGIN_FILE', __FILE__ ); } /** * Plugin dir path. */ if ( ! defined( 'HOSTINGER_AI_ASSISTANT_PLUGIN_URL' ) ) { define( 'HOSTINGER_AI_ASSISTANT_PLUGIN_URL', plugin_dir_url( __FILE__ ) ); } /** * Plugin assets path. */ if ( ! defined( 'HOSTINGER_AI_ASSISTANT_ASSETS_URL' ) ) { define( 'HOSTINGER_AI_ASSISTANT_ASSETS_URL', plugin_dir_url( __FILE__ ) . 'assets' ); } /** * Hostinger config path. */ if ( ! defined( 'HOSTINGER_AI_ASSISTANT_CONFIG_PATH' ) ) { define( 'HOSTINGER_AI_ASSISTANT_CONFIG_PATH', ABSPATH . '/.private/config.json' ); } /** * Hostinger api token path. */ if ( ! defined( 'HOSTINGER_AI_ASSISTANT_WP_AI_TOKEN' ) ) { $path = explode( '/', __DIR__ ); $server_root_path = '/' . $path[1] . '/' . $path[2]; define( 'HOSTINGER_AI_ASSISTANT_WP_AI_TOKEN', $server_root_path . '/.api_token' ); } /** * Hostinger default rest api url. */ if ( ! defined( 'HOSTINGER_AI_ASSISTANT_REST_URI' ) ) { define( 'HOSTINGER_AI_ASSISTANT_REST_URI', 'https://rest-hosting.hostinger.com' ); } /** * Hostinger default hpanel rest api url. */ if ( ! defined( 'HOSTINGER_AI_ASSISTANT_HPANEL_REST_URI' ) ) { define( 'HOSTINGER_AI_ASSISTANT_HPANEL_REST_URI', 'https://hpanel.hostinger.com/api/rest-hosting/' ); } /** * Hostinger default proxy url. */ if ( ! defined( 'HOSTINGER_AI_ASSISTANT_WP_API_PROXY_URI' ) ) { if ( isset( $_SERVER['H_STAGING'] ) && filter_var( $_SERVER['H_STAGING'], FILTER_VALIDATE_BOOLEAN ) === true ) { $proxy_uri = 'https://wh-wordpress-proxy-api.hostinger.dev/api/v1'; } else { $proxy_uri = 'https://wh-wordpress-proxy-api.hostinger.io/api/v1'; } define( 'HOSTINGER_AI_ASSISTANT_WP_API_PROXY_URI', $proxy_uri ); } /** * Plugin Rest API base url */ if ( ! defined( 'HOSTINGER_AI_ASSISTANT_REST_API_BASE' ) ) { define( 'HOSTINGER_AI_ASSISTANT_REST_API_BASE', 'hostinger-ai-assistant/v1' ); } if ( ! defined( 'HOSTINGER_AI_MINIMUM_PHP_VERSION' ) ) { define( 'HOSTINGER_AI_MINIMUM_PHP_VERSION', '8.0' ); } if ( ! version_compare( phpversion(), HOSTINGER_AI_MINIMUM_PHP_VERSION, '>=' ) ) { add_action( 'admin_notices', function () { ?> <div class="notice notice-error is-dismissible hts-theme-settings"> <p> <?php /* translators: %s: PHP version */ ?> <strong><?php echo __( 'Attention:', 'hostinger-ai-assistant' ); ?></strong> <?php echo sprintf( __( 'The Hostinger AI plugin requires minimum PHP version of <b>%s</b>. ', 'hostinger-ai-assistant' ), HOSTINGER_AI_MINIMUM_PHP_VERSION ); ?> </p> <p> <?php /* translators: %s: PHP version */ ?> <?php echo sprintf( __( 'You are running <b>%s</b> PHP version.', 'hostinger-ai-assistant' ), phpversion() ); ?> </p> </div> <?php } ); return; } /** * The code that runs during plugin activation. * This action is documented in includes/class-hostinger-ai-assistant-activator.php */ function activate_hostinger_ai_assistant() { require_once plugin_dir_path( __FILE__ ) . 'includes/class-hostinger-ai-assistant-activator.php'; Hostinger_Ai_Assistant_Activator::activate(); do_action( 'activate_hostinger_ai_assistant' ); } /** * The code that runs during plugin deactivation. * This action is documented in includes/class-hostinger-ai-assistant-deactivator.php */ function deactivate_hostinger_ai_assistant() { require_once plugin_dir_path( __FILE__ ) . 'includes/class-hostinger-ai-assistant-deactivator.php'; Hostinger_Ai_Assistant_Deactivator::deactivate(); } register_activation_hook( __FILE__, 'activate_hostinger_ai_assistant' ); register_deactivation_hook( __FILE__, 'deactivate_hostinger_ai_assistant' ); require_once HOSTINGER_AI_ASSISTANT_ABSPATH . 'vendor/autoload_packages.php'; /** * The core plugin class that is used to define internationalization, * admin-specific hooks, and public-facing site hooks. */ require plugin_dir_path( __FILE__ ) . 'includes/class-hostinger-ai-assistant.php'; /** * Begins execution of the plugin. * * Since everything within the plugin is registered via hooks, * then kicking off the plugin from this point in the file does * not affect the page life cycle. * * @since 1.0.0 */ function run_hostinger_ai_assistant() { if ( ! class_exists( 'Hostinger_Ai_Assistant' ) ) { return; } $plugin = new Hostinger_Ai_Assistant(); if ( class_exists( 'Hostinger_Ai_Assistant_Chatbot_Endpoints' ) ) { $chatbot = new Hostinger_Ai_Assistant_Chatbot_Endpoints(); $chatbot->init(); } $plugin->run(); } if ( ! has_action( 'plugins_loaded', 'run_hostinger_ai_assistant' ) ) { add_action( 'plugins_loaded', 'run_hostinger_ai_assistant' ); } if ( class_exists( 'Hostinger\AiAssistant\Boot' ) ) { add_action( 'plugins_loaded', function (): void { $boot = Hostinger\AiAssistant\Boot::get_instance(); $boot->plugins_loaded(); } ); } if ( ! function_exists( 'hostinger_load_menus' ) ) { function hostinger_load_menus(): void { $manager = Manager::getInstance(); $manager->boot(); } } if ( ! has_action( 'plugins_loaded', 'hostinger_load_menus' ) ) { add_action( 'plugins_loaded', 'hostinger_load_menus' ); } if ( ! function_exists( 'hostinger_add_surveys' ) ) { function hostinger_add_surveys(): void { $surveys = Loader::getInstance(); $surveys->boot(); } } if ( ! has_action( 'plugins_loaded', 'hostinger_add_surveys' ) ) { add_action( 'plugins_loaded', 'hostinger_add_surveys' ); }
Save
Close
Exit & Reset
Text mode: syntax highlighting auto-detects file type.
Directory Contents
Dirs: 7 × Files: 5
Delete Selected
Select All
Select None
Sort:
Name
Size
Modified
Enable drag-to-move
Name
Size
Perms
Modified
Actions
admin
DIR
-
drwxr-xr-x
2026-06-14 00:09:15
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
assets
DIR
-
drwxr-xr-x
2026-06-14 00:09:26
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
gutenberg-block
DIR
-
drwxr-xr-x
2026-06-14 00:09:27
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
includes
DIR
-
drwxr-xr-x
2026-06-14 00:09:27
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
includes-psr4
DIR
-
drwxr-xr-x
2026-06-14 00:09:28
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
languages
DIR
-
drwxr-xr-x
2026-06-14 00:09:14
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
vendor
DIR
-
drwxr-xr-x
2026-06-14 00:08:58
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
hostinger-ai-assistant.php
6.99 KB
lrw-r--r--
2026-06-10 16:30:27
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
index.php
28 B
lrw-r--r--
2026-06-10 16:30:27
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
LICENSE.txt
17.67 KB
lrw-r--r--
2026-06-10 16:30:27
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
readme.txt
9.56 KB
lrw-r--r--
2026-06-10 16:30:27
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
uninstall.php
1.03 KB
lrw-r--r--
2026-06-10 16:30:27
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
Zip Selected
If ZipArchive is unavailable, a
.tar
will be created (no compression).