| 1 |
<?php |
| 2 |
/* |
| 3 |
Plugin Name: CoolClock |
| 4 |
Plugin URI: https://status301.net/wordpress-plugins/coolclock/ |
| 5 |
Description: An analog clock for your site. |
| 6 |
Text Domain: coolclock |
| 7 |
Domain Path: /languages |
| 8 |
Requires at least: 5.8 |
| 9 |
Version: 4.3.8 |
| 10 |
Author: RavanH |
| 11 |
Author URI: https://status301.net/ |
| 12 |
License: GPL-2.0-or-later |
| 13 |
License URI: https://www.gnu.org/licenses/gpl-2.0.html |
| 14 |
*/ |
| 15 |
|
| 16 |
if ( ! defined( 'ABSPATH' ) ) exit; |
| 17 |
|
| 18 |
define( 'COOLCLOCK_DIR', plugin_dir_path(__FILE__) ); |
| 19 |
|
| 20 |
/************** |
| 21 |
* CLASSES |
| 22 |
**************/ |
| 23 |
|
| 24 |
require COOLCLOCK_DIR . 'includes/class-coolclock.php'; |
| 25 |
require COOLCLOCK_DIR . 'includes/class-coolclock-widget.php'; |
| 26 |
require COOLCLOCK_DIR . 'includes/class-coolclock-shortcode.php'; |
| 27 |
|
| 28 |
/************** |
| 29 |
* INITIATE |
| 30 |
**************/ |
| 31 |
|
| 32 |
new CoolClock( __FILE__, '4.3.8' ); |
| 33 |
|