- Timestamp:
- 05/11/2020 07:47:03 AM (5 years ago)
- Location:
- sites/trunk/wordpress.org/public_html/wp-content/plugins/handbook
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/plugins/handbook
-
Property
svn:ignore
set to
node_modules
-
Property
svn:ignore
set to
-
sites/trunk/wordpress.org/public_html/wp-content/plugins/handbook/handbook.php
r9636 r9845 6 6 */ 7 7 8 require_once dirname( __FILE__ ) . '/inc/admin-notices.php'; 9 require_once dirname( __FILE__ ) . '/inc/callout-boxes.php'; 10 require_once dirname( __FILE__ ) . '/inc/glossary.php'; 11 require_once dirname( __FILE__ ) . '/inc/navigation.php'; 12 require_once dirname( __FILE__ ) . '/inc/breadcrumbs.php'; 13 require_once dirname( __FILE__ ) . '/inc/table-of-contents.php'; 14 require_once dirname( __FILE__ ) . '/inc/template-tags.php'; 15 require_once dirname( __FILE__ ) . '/inc/email-post-changes.php'; 16 require_once dirname( __FILE__ ) . '/inc/walker.php'; 17 require_once dirname( __FILE__ ) . '/inc/watchlist.php'; 8 const WPORG_HANDBOOK_PLUGIN_FILE = __FILE__; 9 10 require_once __DIR__ . '/inc/admin-notices.php'; 11 require_once __DIR__ . '/inc/callout-boxes.php'; 12 require_once __DIR__ . '/inc/glossary.php'; 13 require_once __DIR__ . '/inc/navigation.php'; 14 require_once __DIR__ . '/inc/breadcrumbs.php'; 15 require_once __DIR__ . '/inc/table-of-contents.php'; 16 require_once __DIR__ . '/inc/template-tags.php'; 17 require_once __DIR__ . '/inc/email-post-changes.php'; 18 require_once __DIR__ . '/inc/walker.php'; 19 require_once __DIR__ . '/inc/watchlist.php'; 20 require_once __DIR__ . '/inc/blocks.php'; 18 21 19 22 /** … … 156 159 return $post_states; 157 160 } 158 161 159 162 /** 160 163 * Adds custom handbook-related classes to body tag. … … 438 441 register_sidebar( $sidebar_args ); 439 442 440 require_once dirname( __FILE__ ). '/inc/widgets.php';443 require_once __DIR__ . '/inc/widgets.php'; 441 444 register_widget( 'WPorg_Handbook_Pages_Widget' ); 442 445 }
Note: See TracChangeset
for help on using the changeset viewer.