-
Notifications
You must be signed in to change notification settings - Fork 4.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Restructure PHP code into separate files (#985)
- Loading branch information
Showing
9 changed files
with
678 additions
and
585 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<?php | ||
/** | ||
* Plugin Name: Gutenberg | ||
* Plugin URI: https://github.com/WordPress/gutenberg | ||
* Description: Prototyping since 1440. This is the development plugin for the new block editor in core. <strong>Meant for development, do not run on real sites.</strong> | ||
* Version: 0.1.0 | ||
* Author: Gutenberg Team | ||
* | ||
* @package gutenberg | ||
*/ | ||
|
||
require_once dirname( __FILE__ ) . '/lib/blocks.php'; | ||
require_once dirname( __FILE__ ) . '/lib/client-assets.php'; | ||
require_once dirname( __FILE__ ) . '/lib/i18n.php'; | ||
require_once dirname( __FILE__ ) . '/lib/register.php'; |
Oops, something went wrong.