updated plugin Menu Icons
version 0.12.4
This commit is contained in:
24
wp-content/plugins/menu-icons/vendor/codeinwp/gutenberg-menu-icons/load.php
vendored
Normal file
24
wp-content/plugins/menu-icons/vendor/codeinwp/gutenberg-menu-icons/load.php
vendored
Normal file
@ -0,0 +1,24 @@
|
||||
<?php
|
||||
/**
|
||||
* Loader for the ThemeIsle\GutenbergMenuIcons
|
||||
*
|
||||
* @package ThemeIsle\GutenbergMenuIcons
|
||||
* @copyright Copyright (c) 2020, Hardeep Asrani
|
||||
* @license http://opensource.org/licenses/gpl-3.0.php GNU Public License
|
||||
* @since 1.0.0
|
||||
*/
|
||||
|
||||
define( 'THEMEISLE_GUTENBERG_MENU_ICONS_VERSION', '1.0.4' );
|
||||
define( 'THEMEISLE_GUTENBERG_MENU_ICONS_DEV', false );
|
||||
|
||||
if ( function_exists( 'add_action' ) ) {
|
||||
add_action(
|
||||
'plugins_loaded',
|
||||
function () {
|
||||
// call this only if Gutenberg is active.
|
||||
if ( function_exists( 'register_block_type' ) ) {
|
||||
require_once dirname( __FILE__ ) . '/class-gutenberg-menu-icons.php';
|
||||
}
|
||||
}
|
||||
);
|
||||
}
|
Reference in New Issue
Block a user