文件操作 - README.md
返回文件管理
返回主菜单
删除本文件
文件: /root/Desktop/OLD/plugin-wordpress/advanced-cron-manager/vendor/underdev/requirements/README.md
编辑文件内容
[](https://packagist.org/packages/underdev/requirements) [](https://packagist.org/packages/underdev/requirements) [](https://packagist.org/packages/underdev/requirements) # WordPress plugin requirements A WordPress drop-in to check requirements. Simple include the underDEV_Requirements.php file in your project or install and load it via Composer: `composer require underdev/requirements` Default checks: * PHP version * PHP extensions loaded * WordPress version * Active plugins and their versions * Active theme * Function collisions * Class collisions You can add also your own custom checks. See the example below. It doesn't break the user action, such as activating many plugins at once. It will simply display a notice in the admin area:  ## Sample usage ```php <?php /* Plugin Name: My Test Plugin Version: 1.0 */ /** * If installed by download */ require_once( 'underDEV_Requirements.php' ); /** * If installed via Composer it's included in the autoloader */ require_once( 'vendor/autoload.php' ); $requirements = new underDEV_Requirements( 'My Test Plugin', array( 'php' => '5.3', 'php_extensions' => array( 'soap' ), 'wp' => '4.8', 'plugins' => array( 'akismet/akismet.php' => array( 'name' => 'Akismet', 'version' => '3.0' ), 'hello-dolly/hello.php' => array( 'name' => 'Hello Dolly', 'version' => '1.5' ) ), 'theme' => array( 'slug' => 'twentysixteen', 'name' => 'Twenty Sixteen' ), 'function_collision' => array( 'my_function_name', 'some_other_potential_collision' ), 'class_collision' => array( 'My_Test_Plugin', 'My_Test_Plugin_Other_Class' ), 'custom_check' => 'thing to check', // this is not default check and will have to be registered ) ); /** * Add your own check */ function my_plugin_custom_check( $comparsion, $r ) { if ( $comparsion != 'thing to check' ) { $r->add_error( 'this thing to be that' ); } } $requirements->add_check( 'custom_check', 'my_plugin_custom_check' ); /** * Run all the checks and check if requirements has been satisfied * If not - display the admin notice and exit from the file */ if ( ! $requirements->satisfied() ) { add_action( 'admin_notices', array( $requirements, 'notice' ) ); return; } /** * Checks passed - load the plugin */ new My_Test_Plugin(); ```
修改文件时间
将文件时间修改为当前时间的前一年
删除文件