-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPluginDemo.php
More file actions
30 lines (23 loc) · 1 KB
/
PluginDemo.php
File metadata and controls
30 lines (23 loc) · 1 KB
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
<?php
/**
* Plugin Name: ShellPress Demo
* Description: Development demo for ShellPress framework.
* Version: 1.0.5
* Plugin URI: https://themastercut.co
* Author: TheMasterCut.co
* License: GPL-2.0+
* Text Domain: shellpress
* Domain Path: /langugages
*/
// ----------------------------------------
// Requirements
// ----------------------------------------
require __DIR__ . '/vendor/autoload.php'; // Composer
$requirementChecker = new ShellPress_RequirementChecker();
$checkPHP = $requirementChecker->checkPHPVersion( '5.3', 'ShellPress Demo requires PHP version >= 5.3' );
$checkWP = $requirementChecker->checkWPVersion( '4.8', 'ShellPress Demo requires WP version >= 4.8' );
if( ! $checkPHP || ! $checkWP ) return;
// ----------------------------------------
// ShellPress
// ----------------------------------------
\shellpress\v1_4_0\demo\Demo::initShellPress( __FILE__, 'spdemo', '1.0.5' ); // <--- Remember to always change version here