PluginProbe
CoolClock / 4.3.9
CoolClock v4.3.9
4.3.9 4.3.8 trunk 0.1 2.0 2.9.8 3.0 3.1 3.2 3.3 4.0 4.1 4.2 4.3.3 4.3.4 4.3.5 4.3.6 4.3.7
coolclock / coolclock.php

coolclock.php in CoolClock 4.3.9, at coolclock.php

32 lines 743 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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 Requires at least: 5.8
8 Version: 4.3.9
9 Author: RavanH
10 Author URI: https://status301.net/
11 License: GPL-2.0-or-later
12 License URI: https://www.gnu.org/licenses/gpl-2.0.html
13 */
14
15 if ( ! defined( 'ABSPATH' ) ) exit;
16
17 define( 'COOLCLOCK_DIR', plugin_dir_path(__FILE__) );
18
19 /**************
20 * CLASSES
21 **************/
22
23 require COOLCLOCK_DIR . 'includes/class-coolclock.php';
24 require COOLCLOCK_DIR . 'includes/class-coolclock-widget.php';
25 require COOLCLOCK_DIR . 'includes/class-coolclock-shortcode.php';
26
27 /**************
28 * INITIATE
29 **************/
30
31 new CoolClock( __FILE__, '4.3.9' );
32