| Server IP : 195.130.67.5 / Your IP : 216.73.217.154 Web Server : Microsoft-IIS/10.0 System : Windows NT WEBSERVER1 10.0 build 17763 (Windows Server 2016) i586 User : IUSR ( 0) PHP Version : 7.4.19 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /Old Sites/robotics/wp-content/plugins/types/library/toolset/types/embedded/ |
Upload File : |
<?php
add_action( 'plugins_loaded', 'wpcf_embedded_load_or_deactivate' );
function wpcf_embedded_load_or_deactivate()
{
if ( function_exists('wpcf_activation_hook') ) {
add_action( 'admin_init', 'wpcf_embedded_deactivate' );
add_action( 'admin_notices', 'wpcf_embedded_deactivate_notice' );
} else {
require_once 'types.php';
}
}
/**
* wpcf_embedded_deactivate
*
* Deactivate this plugin
*
* @since 1.6.2
*/
function wpcf_embedded_deactivate()
{
$plugin = plugin_basename( __FILE__ );
deactivate_plugins( $plugin );
}
/**
* wpcf_embedded_deactivate_notice
*
* Deactivate notice for this plugin
*
* @since 1.6.2
*/
function wpcf_embedded_deactivate_notice()
{
?>
<div class="error">
<p>
<?php _e( 'Types Embedded was <strong>deactivated</strong>! You are already running the complete Types plugin, so this one is not needed anymore.', 'wpcf' ); ?>
</p>
</div>
<?php
}