PATH:
home
/
letacommog
/
aacote
/
wp-content
/
plugins
/
paid-memberships-pro
/
includes
<?php /** * Check if certain plugins or themes are installed and activated * and if found dynamically load the relevant /includes/compatibility/ files. */ function pmpro_compatibility_checker () { $compat_checks = array( array( 'file' => 'siteorigin.php', 'check_type' => 'constant', 'check_value' => 'SITEORIGIN_PANELS_VERSION', ), array( 'file' => 'elementor.php', 'check_type' => 'constant', 'check_value' => 'ELEMENTOR_VERSION' ), array( 'file' => 'beaver-builder.php', 'check_type' => 'constant', 'check_value' => 'FL_BUILDER_VERSION' ), ); foreach ( $compat_checks as $key => $value ) { if ( ( $value['check_type'] == 'constant' && defined( $value['check_value'] ) ) || ( $value['check_type'] == 'function' && function_exists( $value['check_value'] ) ) || ( $value['check_type'] == 'class' && class_exists( $value['check_value'] ) ) ) { include( PMPRO_DIR . '/includes/compatibility/' . $value['file'] ) ; } } } add_action( 'plugins_loaded', 'pmpro_compatibility_checker' );
[+]
..
[-] services.php
[edit]
[-] recaptcha.php
[edit]
[-] upgradecheck.php
[edit]
[-] rest-api.php
[edit]
[+]
updates
[-] email.php
[edit]
[-] updates.php
[edit]
[-] states.php
[edit]
[-] license.php
[edit]
[-] content.php
[edit]
[-] login.php
[edit]
[+]
compatibility
[-] https.php
[edit]
[-] metaboxes.php
[edit]
[-] localization.php
[edit]
[-] deprecated.php
[edit]
[-] notifications.php
[edit]
[-] adminpages.php
[edit]
[-] capabilities.php
[edit]
[-] profile.php
[edit]
[+]
lib
[-] cleanup.php
[edit]
[-] countries.php
[edit]
[-] sessions.php
[edit]
[-] currencies.php
[edit]
[-] addons.php
[edit]
[-] functions.php
[edit]
[-] filters.php
[edit]
[-] xmlrpc.php
[edit]
[-] setup.sql
[edit]
[-] compatibility.php
[edit]
[-] admin.php
[edit]
[-] privacy.php
[edit]
[-] pointers.php
[edit]
[-] init.php
[edit]
[-] reports.php
[edit]