Alert: This function’s access is marked private. This means it is not intended for use by plugin or theme developers, only in other core functions. It is listed here for completeness.
Popup_Maker::includes()
Include required files
Description Description
Source Source
File: popup-maker.php
private function includes() { require_once self::$DIR . 'includes/compat.php'; // Initialize global options PUM_Utils_Options::init(); /** Loads most of our core functions */ require_once self::$DIR . 'includes/functions.php'; /** Deprecated functionality */ require_once self::$DIR . 'includes/functions-backcompat.php'; require_once self::$DIR . 'includes/functions-deprecated.php'; require_once self::$DIR . 'includes/deprecated-classes.php'; require_once self::$DIR . 'includes/deprecated-filters.php'; require_once self::$DIR . 'includes/integrations.php'; // Old Stuff. require_once self::$DIR . 'includes/defaults.php'; require_once self::$DIR . 'includes/input-options.php'; require_once self::$DIR . 'includes/importer/easy-modal-v2.php'; // Phasing Out require_once self::$DIR . 'includes/class-popmake-fields.php'; require_once self::$DIR . 'includes/class-popmake-popup-fields.php'; /** * v1.4 Additions */ require_once self::$DIR . 'includes/class-pum-fields.php'; require_once self::$DIR . 'includes/class-pum-form.php'; // Modules require_once self::$DIR . 'includes/modules/menus.php'; require_once self::$DIR . 'includes/modules/admin-bar.php'; require_once self::$DIR . 'includes/modules/reviews.php'; require_once self::$DIR . 'includes/pum-install-functions.php'; }
Expand full source code Collapse full source code View on Trac