-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtimeclock.php
More file actions
36 lines (29 loc) · 824 Bytes
/
timeclock.php
File metadata and controls
36 lines (29 loc) · 824 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<?php
/**
* TimeClock
*
* @author James K
* @license AGPLv3+
* @link https://github.com/TenthPres/TimeClock
* @package TimeClock
*/
/*
Plugin Name: TimeClock
Plugin URI: https://github.com/tenthpres/timeclock
Update URI: https://github.com/tenthpres/timeclock
Description: A WordPress Plugin providing a simple time clock system for employees.
Version: 0.0.96
Author: James K
Author URI: https://github.com/jkrrv
License: GPLv2
Text Domain: TimeClock
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 8.0
Release Asset: true
*/
namespace tp\TimeClock;
if (!defined('WPINC')) exit;
require_once __DIR__ . '/classes/TimeClock.php';
/*** Load (set action hooks, etc.) ***/
TimeClock::getInstance(__FILE__);