'; echo '

Automatic Currency Converter requires PHP verion ' . '5.4' . ' or newer'; echo ', but yours is ' . PHP_VERSION . '.

'; echo '

The plugin has been deactivated.

'; echo ''; require_once ABSPATH . '/wp-admin/includes/plugin.php'; deactivate_plugins( __FILE__ ); exit(); } global $wp_version; if (version_compare( $wp_version, '4.0', '<' )) { echo '
'; echo '

Automatic Currency Converter requires WordPress verion ' . '4.0' . ' or newer'; echo ', but yours is ' . $wp_version . '.

'; echo '

The plugin has been deactivated.

'; echo '
'; require_once ABSPATH . '/wp-admin/includes/plugin.php'; deactivate_plugins( __FILE__ ); exit(); } } load_plugin_textdomain( 'auto_currency_converter', false, dirname( plugin_basename( __FILE__ ) ) . '/languages/' ); require_once __DIR__. '/vendor/autoload.php'; $manager = new Oow\Plugin\PluginManager; $manager->addPlugin(new Akky\AutoCurrencyConverter());