403Webshell
Server IP : 104.21.21.239  /  Your IP : 216.73.217.139
Web Server : Apache/2.4.68 (Amazon Linux) OpenSSL/3.5.5
System : Linux ip-172-31-69-123.ec2.internal 6.1.176-223.369.amzn2023.x86_64 #1 SMP PREEMPT_DYNAMIC Fri Jul 24 13:34:27 UTC 2026 x86_64
User : ec2-user ( 1000)
PHP Version : 8.4.23
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : OFF  |  Sudo : ON  |  Pkexec : ON
Directory :  /home/home2/domains/licampfair.com/wp-content/plugins/kali-forms/Inc/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /home/home2/domains/licampfair.com/wp-content/plugins/kali-forms/Inc/class-kaliforms.php
<?php
namespace KaliForms\Inc;

if (!defined('ABSPATH')) {
    exit;
}

use KaliForms\Inc\Backend\Dashboard_Widget;
use KaliForms\Inc\Backend\Elementor_KaliForms_Widget;
use KaliForms\Inc\Backend\Hooks;
use KaliForms\Inc\Backend\Meta_Save;
use KaliForms\Inc\Backend\Notifications;
use KaliForms\Inc\Backend\Plugin_Collision;
use KaliForms\Inc\Backend\Plugin_Deactivation;
use KaliForms\Inc\Backend\Plugin_Health_Checks;
use KaliForms\Inc\Backend\Plugin_Review;
use KaliForms\Inc\Backend\Posts\Forms;
use KaliForms\Inc\Backend\Posts\Submitted;
use KaliForms\Inc\Backend\Predefined_Forms;
use KaliForms\Inc\Backend\Rest\Forms_Rest_Controller;
use KaliForms\Inc\Backend\Rest\Form_Entries_Rest_Controller;
use KaliForms\Inc\Frontend\Form_Processor;
// use KaliForms\Inc\Frontend\Rest\Forms_Processor_Rest_Controller;
use KaliForms\Inc\Handle_Payments;
use KaliForms\Inc\Payments_Simple;
use KaliForms\Inc\Utils\First_Install;
use KaliForms\Inc\Utils\Installation;
use KaliForms\Inc\Utils\TransientHelper;

/**
 * Class KaliForms
 *
 * @package App
 */
class KaliForms
{
    use TransientHelper;
    /**
     * Plugin slug
     *
     * @var string
     */
    protected $slug = 'kaliforms';

    /**
     * Plugins hooked in KaliForms
     *
     * @var array
     */
    public $plugins = [];

    /**
     * KaliForms constructor.
     */
    public function __construct()
    {
        // Activation hook - mostly used for first installers
        register_activation_hook(KALIFORMS_PLUGIN_FILE, [$this, 'install']);
        // Welcome screen init
        // new Welcome_Screen();
        // Init Kali Forms plugin during the plugins_loaded hook. It provides an order for the "additional" components
        add_action('plugins_loaded', [$this, 'init_kaliforms']);
        add_action('admin_head', [$this, 'upgrade_pro']);
    }

    /**
     * Initiate kaliforms
     */
    public function init_kaliforms()
    {
        /**
         * Hook before the plugin is constructed
         */
        do_action($this->slug . '_before_construction', $this);
        /**
         * Hook external plugins in KaliForms
         */
        $this->plugins = apply_filters($this->slug . '_hook_external_plugins', $this->plugins);
        /**
         * Create an instance of the meta save
         */
        Meta_Save::get_instance();
        /**
         * Register the new custom post types
         */
        new Forms();
        new Submitted();
        /**
         * Initiate actions & filters
         */
        new Hooks();
        /**
         * Form processor
         */
        new Form_Processor();
        /**
         * Payment actions
         */
        defined('KALIFORMS_PAYMENTS_VERSION') ? new Handle_Payments() : new Payments_Simple();
        /**
         * Load the predefined forms
         */
        new Predefined_Forms();
        /**
         * Create notifications
         */
        $notifications = Notifications::get_instance();
        /**
         * Initiate the plugin collision class
         */
        $this->check_plugin_collision();
        /**
         * Start the plugin health checks ( for page /wp-admin/site-health.php )
         */
        new Plugin_Health_Checks();
        /**
         * Plugin review
         */
        new Plugin_Review();
        /**
         * Plugin deactivation
         */
        new Plugin_Deactivation();
        /**
         * Dashboard widgets;
         */
        new Dashboard_Widget();
        $this->load_elementor_widget();
        /**
         * Hook after the plugin constructor is ready
         * (Some parts of the plugin e.g. Hooks() may happen later)
         */
        do_action($this->slug . '_after_construction', $this);
        /**
         * Delete transient files from the file upload
         */
        add_action($this->slug . '_delete_transient_file', [$this, 'delete_transient_file']);
        add_action('rest_api_init', [$this, 'start_controller']);
    }

    /**
     * Returns an instance of the plugin
     *
     * @return KaliForms
     */
    public static function get_instance()
    {
        static $inst;
        if (!$inst) {
            $inst = new KaliForms();
        }

        return $inst;
    }

    /**
     * Installation hook
     */
    public function install()
    {
        // This was the welcome screen - we dont really need it
        new First_Install();
        new Installation();
    }
    /**
     * Start controller
     */
    public function start_controller()
    {
        (new Forms_Rest_Controller())->register_routes();
        (new Form_Entries_Rest_Controller())->register_routes();
        // (new Forms_Processor_Rest_Controller())->register_routes();
    }
    /**
     * Checks plugin collision
     *
     * @return void
     */
    public function check_plugin_collision()
    {
        $collision = new Plugin_Collision();
        if (count($collision->activated_plugins) > 0) {
            $collision->set_notice();
        }
    }
    /**
     * Check submission plugin
     *
     * @return void
     */
    private function _check_submission_plugin()
    {
        if (
            defined('KALIFORMS_SUBMISSIONS_PLUGIN_FILE')
            && defined('KALIFORMS_SUBMISSIONS_VERSION')
            && version_compare(KALIFORMS_SUBMISSIONS_VERSION, '1.4.0', '<')
        ) {
            deactivate_plugins(KALIFORMS_SUBMISSIONS_PLUGIN_FILE, true);
            $html = '<div class="notice" style="background: #e9eff3;padding: 15px;border: 10px solid #fff;text-align:center;">';
            $html .= '<h1 style="text-align:center; margin-bottom:15px">';
            $html .= esc_html__('Kali Forms Submissions Deactivated', 'kaliforms');
            $html .= '</h1>';
            $html .= '<h4>' . esc_html__("The plugin was deactivated because this version is not supported. No worries, everything is still working, but please make sure you update our plugins to the latest versions. You can do so by using the automatic plugin updater functionality, or by downloading the newest plugin file from our website.", 'kaliforms') . '</h4>';
            $html .= '</div>';

            echo $html;
            return;
        }

		if (
			defined('KALIFORMS_SUBMISSIONS_PLUGIN_FILE')
			&& defined('KALIFORMS_SUBMISSIONS_VERSION')
			&& version_compare(KALIFORMS_SUBMISSIONS_VERSION, '1.5.0', '<')
		) {
			$html = '<div class="notice" style="background: #e9eff3;padding: 15px;border: 10px solid #fff;text-align:center;">';
			$html .= '<h1 style="text-align:center; margin-bottom:15px">';
			$html .= esc_html__('Kali Forms Submissions needs update', 'kaliforms');
			$html .= '</h1>';
			$html .= '<h4>' . esc_html__("Please make sure you are using the latest version of the Kali Forms Submissions plugin.", 'kaliforms') . '</h4>';
			$html .= '</div>';

			echo $html;
		}
    }
    /**
     * Upgrade pro version if needed
     *
     * @return void
     */
    public function upgrade_pro()
    {
        $this->_check_submission_plugin();
        $plugins = get_plugins();
        $status  = array_key_exists('kali-forms-pro/kali-forms-pro.php', $plugins) ? 'installed' : 'not-installed';
        if ($status === 'not-installed') {
            return;
        }

        if ($status === 'installed') {
            $status = is_plugin_active('kali-forms-pro/kali-forms-pro.php') ? 'active' : 'installed';
        }

        if ($status === 'active' && version_compare(KALIFORMS_PRO_VERSION, '1.5.0', '<')) {
            $html = '<div class="notice" style="background: #e9eff3;padding: 15px;border: 10px solid #fff;text-align:center;">';
            $html .= '<h1 style="text-align:center; margin-bottom:15px">';
            $html .= esc_html__('Update Kali Forms Pro to the latest version', 'kaliforms');
            $html .= '</h1>';
            $html .= '<h4>' . esc_html__("Please make sure you update our plugins to the latest versions. You can do so by using the automatic plugin updater functionality, or by downloading the newest plugin file from our website.", 'kaliforms') . '</h4>';
            $html .= '</div>';

            echo $html;
        }
    }

    /**
     * Registers the widget to the elementor plugin
     *
     * @return void
     */
    public function load_elementor_widget()
    {
        add_action('elementor/widgets/widgets_registered', function () {
            $widget = new Elementor_KaliForms_Widget();
            \Elementor\Plugin::instance()->widgets_manager->register_widget_type($widget);
        });

    }
}

Youez - 2016 - github.com/yon3zu
LinuXploit