Changeset 2985
- Timestamp:
- 04/20/2016 11:08:56 AM (8 years ago)
- Location:
- sites/trunk/wordpress.org/public_html/wp-content/plugins/plugin-directory
- Files:
-
- 4 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/plugins/plugin-directory/class-plugin-directory.php
r2983 r2985 29 29 30 30 add_filter( 'map_meta_cap', array( __NAMESPACE__ . '\Capabilities', 'map_meta_cap' ), 10, 4 ); 31 32 // Load the API routes 33 add_action( 'rest_api_init', array( __NAMESPACE__ . '\API\Base', 'load_routes' ) ); 31 34 32 35 // Load all Admin-specific items. -
sites/trunk/wordpress.org/public_html/wp-content/plugins/plugin-directory/class-readme-parser.php
r2970 r2985 43 43 // These are the valid header mappings for the header 44 44 private $valid_headers = array( 45 46 47 48 49 50 51 52 53 45 'tested' => 'tested', 46 'tested up to' => 'tested', 47 'requires' => 'requires', 48 'requires at least' => 'requires', 49 'tags' => 'tags', 50 'contributors' => 'contributors', 51 'donate link' => 'donate_link', 52 'stable tag' => 'stable_tag', 53 ); 54 54 55 55 public function __construct( $file ) {
Note: See TracChangeset
for help on using the changeset viewer.