golden hour
/home/godaofbq/hardchambers.com/wp-content/plugins/discountify-pro/core
⬆️ Go Up
Upload
File/Folder
Size
Actions
admin
-
Del
OK
core.php
645 B
Del
OK
frontend
-
Del
OK
Edit: core.php
<?php namespace DiscountifyPro\Core; use DiscountifyPro\Utils\Singleton; /** * Base Class * * @since 1.0.0 */ class Core { use Singleton; /** * Initialize all modules. * * @since 1.0.0 * * @return void */ public function init() { if ( is_admin() ) { \DiscountifyPro\Core\Admin\Admin::instance()->init(); if ( defined( 'DOING_AJAX' ) && DOING_AJAX ) { \DiscountifyPro\Lib\License\Marketplace\License::instance()->init(); } } else { \DiscountifyPro\Core\Frontend\Frontend::instance()->init(); } } }
Save