modern-events-calendar-lite/app/core/mec.php

19 lines
339 B
PHP
Raw Permalink Normal View History

2024-10-15 12:04:03 +02:00
<?php
if ( !defined( 'ABSPATH' ) ) {
exit;
}
if ( !defined( 'MEC_CORE_FILE' ) ) {
define( 'MEC_CORE_FILE', __FILE__ );
}
if ( !defined( 'MEC_CORE_URL' ) ) {
define('MEC_CORE_URL', plugin_dir_url( __FILE__ ));
}
/**
* Include Primary Class Plugin
*/
require __DIR__.'/src/Base.php';
\MEC\Base::instance()->init();