Server IP : 68.65.122.186 / Your IP : 216.73.216.48 Web Server : Apache System : Linux host38.registrar-servers.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64 User : zmbusine ( 2029) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/zmbusine/www/wp-content/plugins/quform/ |
Upload File : |
<?php /** * Plugin Name: Quform * Plugin URI: https://www.quform.com * Description: The Quform form builder makes it easy to build forms in WordPress. * Version: 2.20.0 * Author: ThemeCatcher * Author URI: https://www.themecatcher.net * Text Domain: quform */ // Prevent direct script access if ( ! defined('ABSPATH')) { exit; } define('QUFORM_LICENSE_KEY', 'B5E0B5F8DD8689E6ACA49DD6E6E1A930'); define('QUFORM_VERSION', '2.20.0'); define('QUFORM_PATH', dirname(__FILE__)); define('QUFORM_NAME', basename(QUFORM_PATH)); define('QUFORM_BASENAME', QUFORM_NAME . '/' . basename(__FILE__)); define('QUFORM_LIBRARY_PATH', QUFORM_PATH . '/library'); define('QUFORM_TEMPLATE_PATH', QUFORM_PATH . '/library/templates'); define('QUFORM_ADMIN_PATH', QUFORM_PATH . '/admin'); if ( ! class_exists('JuiceContainer')) { require_once QUFORM_LIBRARY_PATH . '/JuiceContainer.php'; } require_once QUFORM_LIBRARY_PATH . '/Quform/ClassLoader.php'; Quform_ClassLoader::register(); add_action('plugins_loaded', array('Quform', 'bootstrap'), 5); register_activation_hook(QUFORM_BASENAME, array('Quform', 'onActivation')); /** * Get a service from the container * * @param string $service The service name * @return mixed The service instance */ function quform($service) { return Quform::getService($service); }