init
This commit is contained in:
commit
de73fc619a
3560 changed files with 747274 additions and 0 deletions
16
web/app/mu-plugins/bedrock-autoloader.php
Executable file
16
web/app/mu-plugins/bedrock-autoloader.php
Executable file
|
|
@ -0,0 +1,16 @@
|
|||
<?php
|
||||
/**
|
||||
* Plugin Name: Bedrock Autoloader
|
||||
* Plugin URI: https://github.com/roots/bedrock-autoloader
|
||||
* Description: An autoloader that enables standard plugins to be required just like must-use plugins. The autoloaded plugins are included during mu-plugin loading. An asterisk (*) next to the name of the plugin designates the plugins that have been autoloaded.
|
||||
* Version: 1.0.3
|
||||
* Author: Roots
|
||||
* Author URI: https://roots.io/
|
||||
* License: MIT License
|
||||
*/
|
||||
|
||||
namespace Roots\Bedrock;
|
||||
|
||||
if (is_blog_installed() && class_exists(Autoloader::class)) {
|
||||
new Autoloader();
|
||||
}
|
||||
3
web/app/mu-plugins/no-deprecations.php
Executable file
3
web/app/mu-plugins/no-deprecations.php
Executable file
|
|
@ -0,0 +1,3 @@
|
|||
<?php
|
||||
error_reporting(E_ALL & ~E_WARNING & ~E_DEPRECATED & ~E_USER_DEPRECATED & ~E_NOTICE);
|
||||
?>
|
||||
Loading…
Add table
Add a link
Reference in a new issue