-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathorbis-timesheets.php
46 lines (41 loc) · 1.28 KB
/
orbis-timesheets.php
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
37
38
39
40
41
42
43
44
45
46
<?php
/**
* Orbis Timesheets
*
* @package Pronamic\Orbis\Timesheets
* @author Pronamic
* @copyright 2024 Pronamic
* @license GPL-2.0-or-later
*
* @wordpress-plugin
* Plugin Name: Orbis Timesheets
* Plugin URI: https://wp.pronamic.directory/plugins/orbis-timesheets/
* Description: Time Management, Timesheet, Time Tracking solution for WordPress. Orbis Timesheets enables you to track your work time.
* Version: 1.3.3
* Requires at least: 5.2
* Requires PHP: 7.2
* Author: Pronamic
* Author URI: https://www.pronamic.eu/
* Text Domain: orbis-timesheets
* Domain Path: /languages/
* License: GPL v2 or later
* License URI: http://www.gnu.org/licenses/gpl-2.0.txt
* Update URI: https://wp.pronamic.directory/plugins/orbis-timesheets/
* GitHub URI: https://github.com/pronamic/wp-orbis-timesheets
*/
namespace Pronamic\Orbis\Timesheets;
/**
* Autoload.
*/
require_once __DIR__ . '/vendor/autoload_packages.php';
/**
* Bootstrap.
*/
add_action(
'plugins_loaded',
function () {
\load_plugin_textdomain( 'orbis-timesheets', false, \dirname( \plugin_basename( __FILE__ ) ) . '/languages' );
global $orbis_timesheets_plugin;
$orbis_timesheets_plugin = new Plugin();
}
);