| Server IP : 172.67.201.108 / Your IP : 216.73.216.191 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/celeberateshowcase.com/wp-content/plugins/wysiwyg-widgets/ |
Upload File : |
<?php
/*
Plugin Name: Widget Content Blocks
Plugin URI: https://dannyvankooten.com/wordpress-plugins/wysiwyg-widgets/
Description: Adds a WYSIWYG Widget with a rich text editor and media upload functions.
Version: 2.3.9
Author: Danny van Kooten
Author URI: http://dvk.co/
Text Domain: wysiwyg-widgets
Domain Path: /languages/
License: GPL v3 or later
WYSIWYG Widgets plugin
Copyright (C) 2013-2019, Danny van Kooten, [email protected]
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
if ( ! defined( 'ABSPATH' ) ) exit;
define( 'WYWI_VERSION_NUMBER', "2.3.8" );
define( 'WYWI_PLUGIN_DIR', dirname( __FILE__ ) .'/' );
require_once WYWI_PLUGIN_DIR . 'includes/plugin.php';
// only load admin class for non-ajax requests to the admin section
if( is_admin() && ( ! defined( 'DOING_AJAX' ) || ! DOING_AJAX ) ) {
require_once WYWI_PLUGIN_DIR . 'includes/class-admin.php';
new WYSIWYG_Widgets_Admin();
}