-
Notifications
You must be signed in to change notification settings - Fork 2
/
orbis.php
54 lines (48 loc) · 1.35 KB
/
orbis.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
47
48
49
50
51
52
53
54
<?php
/**
* Orbis
*
* @package Pronamic\Orbis
* @author Pronamic
* @copyright 2024 Pronamic
* @license GPL-2.0-or-later
*
* @wordpress-plugin
* Plugin Name: Orbis
* Plugin URI: https://wp.pronamic.directory/plugins/orbis/
* Description: Orbis is a powerful, extendable plugin to boost up your business. Project Management, Customer Relation Management & More…
* Version: 1.3.3
* Requires at least: 5.2
* Requires PHP: 7.2
* Author: Pronamic
* Author URI: https://www.pronamic.eu/
* Text Domain: orbis
* 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/
* GitHub URI: https://github.com/pronamic/wp-orbis
*/
/**
* Autoload
*/
require_once __DIR__ . '/vendor/autoload_packages.php';
/**
* Includes
*/
require_once 'includes/functions.php';
require_once 'includes/persons.php';
require_once 'includes/log.php';
require_once 'includes/flot.php';
require_once 'admin/includes/upgrade.php';
/**
* Bootstrap
*/
function orbis_bootstrap() {
// Initialize
global $orbis_plugin;
$orbis_plugin = new Orbis_Core_Plugin( __FILE__ );
}
add_action( 'orbis_bootstrap', 'orbis_bootstrap', 1 );
// Bootstrap
do_action( 'orbis_bootstrap' );