-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbarista.php
42 lines (34 loc) · 1.21 KB
/
barista.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
<?php
/**
* Plugin Name: Barista
* Plugin URI: https://github.com/fnpen/baristawp-plugin
* Description: A blazing fast, highly extendable command launcher that helps to do your routine tasks much faster. You can search posts, control your site, and much more.
*
* Text Domain: barista
* Domain Path: /languages
*
* Author: WP Busters
* Author URI: https://wpbusters.com/
*
* Version: 0.8.21
* Requires at least: 5.8
* Tested up to: 5.9
* Requires PHP: 7.1
*
* @package barista
*/
declare(strict_types=1);
namespace Barista;
define( 'BARISTA_PATH', \plugin_dir_path( __FILE__ ) );
define( 'BARISTA_URL', \plugins_url( '/', __FILE__ ) );
define( 'BARISTA_PLUGIN_FILE', __FILE__ );
define( 'BARISTA_PLUGIN_DIR', __DIR__ );
define( 'BARISTA_VERSION', '0.8.21' );
// define( 'BARISTA_DEMO', 'animate-up' ); phpcs:ignore Squiz.PHP.CommentedOutCode.Found.
if ( ! defined( 'BARISTA_DEVELOPMENT' ) ) {
define( 'BARISTA_DEVELOPMENT', false );
}
define( 'BARISTA_COMMAND_PRIORITY_WP_DASHBOARD', 1000 );
define( 'BARISTA_COMMAND_PRIORITY_FEATURES', 2000 );
define( 'BARISTA_COMMAND_PRIORITY_ACTIONS', 3000 );
require __DIR__ . '/inc/bootstrap.php';