parsers
1 month ago
admin.php
1 month ago
core.php
1 month ago
engine.php
1 month ago
init.php
9 months ago
mcp.php
1 month ago
parsers.php
1 month ago
rest.php
1 month ago
runs.php
1 month ago
support.php
1 month ago
ui.php
1 month ago
parsers.php
35 lines
| 1 | <?php |
| 2 | |
| 3 | class Meow_WPMC_Parsers { |
| 4 | |
| 5 | public function __construct() { |
| 6 | // require_once( ABSPATH . 'wp-admin/includes/plugin.php' ); // mm change |
| 7 | require_once( 'parsers/common.php' ); |
| 8 | |
| 9 | if ( function_exists( 'parse_blocks' ) ) |
| 10 | require_once( 'parsers/blocks.php' ); |
| 11 | |
| 12 | if ( class_exists( 'WooCommerce' ) ) |
| 13 | require_once( 'parsers/woocommerce.php' ); |
| 14 | |
| 15 | if ( class_exists( 'Attachments' ) ) // mm change |
| 16 | require_once( 'parsers/attachments.php' ); |
| 17 | |
| 18 | if ( class_exists( 'MetaSliderPlugin' ) || class_exists( 'MetaSliderPro' ) ) // mm change |
| 19 | require_once( 'parsers/metaslider.php' ); |
| 20 | |
| 21 | if ( function_exists( 'mc_show_sidebar' ) ) |
| 22 | require_once( 'parsers/my-calendar.php' ); |
| 23 | |
| 24 | if ( class_exists( 'Mega_Menu' ) ) |
| 25 | require_once( 'parsers/maxmegamenu.php' ); |
| 26 | |
| 27 | if ( class_exists( 'WPSEO_Options' ) ) |
| 28 | require_once( 'parsers/wpseo.php' ); |
| 29 | |
| 30 | if ( class_exists( 'Meow_MGL_Core' ) ) |
| 31 | require_once( 'parsers/meow_gallery.php' ); |
| 32 | } |
| 33 | } |
| 34 | |
| 35 | ?> |