File "bootstrap.php"

Full Path: /home/vantageo/public_html/cache/cache/.wp-cli/wp-content/plugins/mojo-marketplace-wp-plugin/vendor/bluehost/endurance-wp-module-business-reviews/bootstrap.php
File size: 540 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

if ( function_exists( 'add_action' ) ) {
	add_action( 'plugins_loaded', 'eig_module_br_register' );
}

/**
 * Register the Business Reviews module
 */
function eig_module_br_register() {
	eig_register_module( array(
		'name'     => 'business-reviews',
		'label'    => __( 'Business Reviews', 'endurance' ),
		'callback' => 'eig_module_br_load',
		'isActive' => false,
		'isHidden' => true,
	) );
}

/**
 * Load the Business Reviews module
 */
function eig_module_br_load() {
	require dirname( __FILE__ ) . '/business-reviews.php';
}