Changeset 1737017
- Timestamp:
- 09/27/2017 11:25:58 AM (8 years ago)
- Location:
- easy-development/trunk
- Files:
-
- 2 edited
-
init.php (modified) (2 diffs)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
easy-development/trunk/init.php
r1736999 r1737017 4 4 Plugin URI: https://github.com/loonpwn/wp-development-environment 5 5 Description: Run extra components in our development environment for easier debugging and usability 6 Version: 1.0. 36 Version: 1.0.4 7 7 Author: Harlan Wilton 8 8 Author URI: https://harlanzw.com … … 19 19 require 'vendor/autoload.php'; 20 20 // check the php version 21 $update_php = new WPUpdatePhp( '7' );22 if (!$update_php->does_it_meet_required_php_version()) {23 return;24 }25 // initialize our plugin26 global $development_environment;27 // we store our value in a global28 $development_environment = new DevelopmentEnvironment();21 $update_php = new WPUpdatePhp( '7' ); 22 if (!$update_php->does_it_meet_required_php_version()) { 23 return; 24 } 25 // initialize our plugin 26 global $development_environment; 27 // we store our value in a global 28 $development_environment = new DevelopmentEnvironment(); 29 29 }; 30 30 -
easy-development/trunk/readme.txt
r1737015 r1737017 63 63 == Changelog == 64 64 65 See changelog on github here - https://github.com/loonpwn/wp-development-environment/releases65 See changelog on (github)[https://github.com/loonpwn/wp-development-environment/releases]
Note: See TracChangeset
for help on using the changeset viewer.