first commit

This commit is contained in:
2024-11-10 21:08:49 +01:00
commit 0d932ce5ee
14455 changed files with 2567501 additions and 0 deletions

View File

@@ -0,0 +1,30 @@
<?php
/*
Plugin Name: WP Smart Preloader
Plugin URI: https://wordpress.org/plugins/wp-smart-preloader
Description: WP Smart Preloader is a Simple CSS spinners and throbbers made with CSS and minimal HTML markup.
Version: 1.15
Author: catchsquare
Author URI: http://catchsquare.com
License: GPLv2 or later
Text Domain: wp-smart-preloader
*/
/*Make sure we don't expose any info if called directly*/
if ( !function_exists( 'add_action' ) ) {
echo "Hi there! I'm just a plugin, not much I can do when called directly.";
exit;
}
/*Define Constants for this plugin*/
define( 'SMART_PRELOADER_VERSION', '1.15' );
define( 'SMART_PRELOADER_PATH', plugin_dir_path( __FILE__ ) );
define( 'SMART_PRELOADER_URL', plugin_dir_url( __FILE__ ) );
// setting page
require SMART_PRELOADER_PATH."inc/wsp-option_page.php";
// uninstall hook
require SMART_PRELOADER_PATH."inc/wsp_uninstall.php";