| 1 |
<?php |
| 2 |
/** |
| 3 |
* Plugin Name: Float Menu Lite |
| 4 |
* Plugin URI: https://wow-estore.com/item/float-menu-pro/ |
| 5 |
* Description: Easily create floating menus of varying complexity |
| 6 |
* Version: 7.2.5 |
| 7 |
* Author: Wow-Company |
| 8 |
* Author URI: https://wow-estore.com |
| 9 |
* License: GPL-2.0+ |
| 10 |
* License URI: http://www.gnu.org/licenses/gpl-2.0.txt |
| 11 |
* Text Domain: float-menu |
| 12 |
* Domain Path: /languages |
| 13 |
* Item ID: 5174 |
| 14 |
* Store URI: https://wow-estore.com/ |
| 15 |
* Author Email: hey@wow-company.com |
| 16 |
* Plugin Menu: Float Menu Lite |
| 17 |
* Rating URI: https://wordpress.org/support/plugin/float-menu/reviews/ |
| 18 |
* Support URI: https://wordpress.org/support/plugin/float-menu/ |
| 19 |
* Item URI: https://wow-estore.com/item/float-menu-pro/ |
| 20 |
* Documentation: https://wow-estore.com/documentations/float-menu-lite/ |
| 21 |
* Change URI: https://wordpress.org/plugins/float-menu/#developers |
| 22 |
* Demo URI: https://demo.wow-estore.com/float-menu-pro/ |
| 23 |
* |
| 24 |
* PHP version 7.4 |
| 25 |
* |
| 26 |
* @category Wordpress_Plugin |
| 27 |
* @package Wow_Plugin |
| 28 |
* @author Dmytro Lobov <dev@wow-company.com>, Wow-Company |
| 29 |
* @copyright 2024 Dmytro Lobov |
| 30 |
* @license GPL-2.0+ |
| 31 |
* |
| 32 |
*/ |
| 33 |
|
| 34 |
namespace FloatMenuLite; |
| 35 |
|
| 36 |
use FloatMenuLite\Admin\DBManager; |
| 37 |
use FloatMenuLite\Update\UpdateDB; |
| 38 |
|
| 39 |
defined( 'ABSPATH' ) || exit; |
| 40 |
|
| 41 |
if ( ! class_exists( 'WOWP_Plugin' ) ) : |
| 42 |
|
| 43 |
final class WOWP_Plugin { |
| 44 |
|
| 45 |
// Plugin slug |
| 46 |
public const SLUG = 'float-menu'; |
| 47 |
|
| 48 |
// Plugin prefix |
| 49 |
public const PREFIX = 'wow_fmp'; |
| 50 |
|
| 51 |
// Plugin Shortcode |
| 52 |
public const SHORTCODE = 'Float-Menu'; |
| 53 |
|
| 54 |
private static $instance; |
| 55 |
|
| 56 |
private WOWP_Admin $admin; |
| 57 |
private Autoloader $autoloader; |
| 58 |
private WOWP_Public $public; |
| 59 |
|
| 60 |
public static function instance(): WOWP_Plugin { |
| 61 |
if ( ! isset( self::$instance ) && ! ( self::$instance instanceof self ) ) { |
| 62 |
self::$instance = new self; |
| 63 |
|
| 64 |
self::$instance->includes(); |
| 65 |
|
| 66 |
self::$instance->autoloader = new Autoloader( 'FloatMenuLite' ); |
| 67 |
self::$instance->admin = new WOWP_Admin(); |
| 68 |
self::$instance->public = new WOWP_Public(); |
| 69 |
|
| 70 |
register_activation_hook( __FILE__, [ self::$instance, 'plugin_activate' ] ); |
| 71 |
add_action( 'plugins_loaded', [ self::$instance, 'loaded' ] ); |
| 72 |
} |
| 73 |
|
| 74 |
|
| 75 |
return self::$instance; |
| 76 |
} |
| 77 |
|
| 78 |
// Plugin Root File. |
| 79 |
public static function file(): string { |
| 80 |
return __FILE__; |
| 81 |
} |
| 82 |
|
| 83 |
// Plugin Base Name. |
| 84 |
public static function basename(): string { |
| 85 |
return plugin_basename( __FILE__ ); |
| 86 |
} |
| 87 |
|
| 88 |
// Plugin Folder Path. |
| 89 |
public static function dir(): string { |
| 90 |
return plugin_dir_path( __FILE__ ); |
| 91 |
} |
| 92 |
|
| 93 |
// Plugin Folder URL. |
| 94 |
public static function url(): string { |
| 95 |
return plugin_dir_url( __FILE__ ); |
| 96 |
} |
| 97 |
|
| 98 |
// Get Plugin Info |
| 99 |
public static function info( $show = '' ): string { |
| 100 |
$data = [ |
| 101 |
'name' => 'Plugin Name', |
| 102 |
'version' => 'Version', |
| 103 |
'url' => 'Plugin URI', |
| 104 |
'author' => 'Author', |
| 105 |
'email' => 'Author Email', |
| 106 |
'store' => 'Store URI', |
| 107 |
'item_id' => 'Item ID', |
| 108 |
'menu_title' => 'Plugin Menu', |
| 109 |
'rating' => 'Rating URI', |
| 110 |
'support' => 'Support URI', |
| 111 |
'pro' => 'Item URI', |
| 112 |
'demo' => 'Demo URI', |
| 113 |
'change' => 'Change URI', |
| 114 |
'docs' => 'Documentation', |
| 115 |
]; |
| 116 |
$plugin_data = get_file_data( __FILE__, $data, false ); |
| 117 |
|
| 118 |
return $plugin_data[ $show ] ?? ''; |
| 119 |
} |
| 120 |
|
| 121 |
/** |
| 122 |
* Include required files. |
| 123 |
* |
| 124 |
* @access private |
| 125 |
* @since 1.0 |
| 126 |
*/ |
| 127 |
private function includes(): void { |
| 128 |
if ( ! class_exists( 'Wow_Company' ) ) { |
| 129 |
require_once self::dir() . 'includes/class-wow-company.php'; |
| 130 |
} |
| 131 |
|
| 132 |
require_once self::dir() . 'classes/Autoloader.php'; |
| 133 |
require_once self::dir() . 'admin/class-wowp-admin.php'; |
| 134 |
require_once self::dir() . 'public/class-wowp-public.php'; |
| 135 |
} |
| 136 |
|
| 137 |
/** |
| 138 |
* Throw error on object clone. |
| 139 |
* The whole idea of the singleton design pattern is that there is a single |
| 140 |
* object therefore, we don't want the object to be cloned. |
| 141 |
* |
| 142 |
* @return void |
| 143 |
* @access protected |
| 144 |
*/ |
| 145 |
public function __clone() { |
| 146 |
// Cloning instances of the class is forbidden. |
| 147 |
_doing_it_wrong( __FUNCTION__, esc_attr__( 'Cheatin’ huh?', 'float-menu' ), '1.0' ); |
| 148 |
} |
| 149 |
|
| 150 |
/** |
| 151 |
* Disable unserializing of the class. |
| 152 |
* |
| 153 |
* @return void |
| 154 |
* @access protected |
| 155 |
*/ |
| 156 |
public function __wakeup() { |
| 157 |
// Unserializing instances of the class is forbidden. |
| 158 |
_doing_it_wrong( __FUNCTION__, esc_attr__( 'Cheatin’ huh?', 'float-menu' ), '1.0' ); |
| 159 |
} |
| 160 |
|
| 161 |
public function plugin_activate(): void { |
| 162 |
|
| 163 |
if ( is_plugin_active( 'float-menu-pro/float-menu-pro.php' ) ) { |
| 164 |
deactivate_plugins( 'float-menu-pro/float-menu-pro.php' ); |
| 165 |
} |
| 166 |
|
| 167 |
$columns = " |
| 168 |
id mediumint(9) NOT NULL AUTO_INCREMENT, |
| 169 |
title VARCHAR(200), |
| 170 |
param longtext, |
| 171 |
status boolean DEFAULT 0 NOT NULL, |
| 172 |
mode boolean DEFAULT 0 NOT NULL, |
| 173 |
tag text, |
| 174 |
PRIMARY KEY (id) |
| 175 |
"; |
| 176 |
|
| 177 |
DBManager::create( $columns ); |
| 178 |
|
| 179 |
update_site_option( self::PREFIX . '_db_version', '7.0' ); |
| 180 |
} |
| 181 |
|
| 182 |
/** |
| 183 |
* Download the folder with languages. |
| 184 |
* |
| 185 |
* @access Publisher |
| 186 |
* @return void |
| 187 |
*/ |
| 188 |
public function loaded(): void { |
| 189 |
UpdateDB::init(); |
| 190 |
$languages_folder = dirname( plugin_basename( __FILE__ ) ) . '/languages/'; |
| 191 |
load_plugin_textdomain( 'float-menu', false, $languages_folder ); |
| 192 |
} |
| 193 |
} |
| 194 |
|
| 195 |
endif; |
| 196 |
|
| 197 |
function wp_plugin_run(): WOWP_Plugin { |
| 198 |
return WOWP_Plugin::instance(); |
| 199 |
} |
| 200 |
|
| 201 |
wp_plugin_run(); |
| 202 |
|
| 203 |
|