-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathorbis-keychains.php
More file actions
38 lines (28 loc) · 872 Bytes
/
orbis-keychains.php
File metadata and controls
38 lines (28 loc) · 872 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
37
38
<?php
/*
Plugin Name: Orbis Keychains
Plugin URI: http://www.orbiswp.com/
Description: Give your whole team access to all the login details within your organization and keep a log of who used wich login details for what reason.
Version: 1.0.3
Requires at least: 3.5
Author: Pronamic
Author URI: http://www.pronamic.eu/
Text Domain: orbis-keychains
Domain Path: /languages/
License: Copyright (c) Pronamic
GitHub URI: https://github.com/pronamic/wp-orbis-keychains
*/
/**
* Autoload.
*/
require_once __DIR__ . '/vendor/autoload_packages.php';
/**
* Bootstrap.
*/
function orbis_keychains_bootstrap() {
include 'classes/orbis-keychains-plugin.php';
include 'classes/orbis-keychains-admin.php';
global $orbis_keychains_plugin;
$orbis_keychains_plugin = new Orbis_Keychains_Plugin( __FILE__ );
}
add_action( 'orbis_bootstrap', 'orbis_keychains_bootstrap' );