set_plugin_constants();
// Composer autoloader.
require_once OCDI_PATH . 'vendor/autoload.php';
// Instantiate the main plugin class *Singleton*.
$one_click_demo_import = OCDI\OneClickDemoImport::get_instance();
// Register WP CLI commands
if ( defined( 'WP_CLI' ) && WP_CLI ) {
WP_CLI::add_command( 'ocdi list', array( 'OCDI\WPCLICommands', 'list_predefined' ) );
WP_CLI::add_command( 'ocdi import', array( 'OCDI\WPCLICommands', 'import' ) );
}
}
}
/**
* Display an admin error notice when PHP is older the version 5.6.
* Hook it to the 'admin_notices' action.
*/
public function old_php_admin_error_notice() { /* translators: %1$s - the PHP version, %2$s and %3$s - strong HTML tags, %4$s - br HTMl tag. */
$message = sprintf( esc_html__( 'The %2$sOne Click Demo Import%3$s plugin requires %2$sPHP 5.6+%3$s to run properly. Please contact your hosting company and ask them to update the PHP version of your site to at least PHP 7.4%4$s Your current version of PHP: %2$s%1$s%3$s', 'one-click-demo-import' ), phpversion(), '', '', '
' );
printf( '
', wp_kses_post( $message ) );
}
/**
* Set plugin constants.
*
* Path/URL to root of this plugin, with trailing slash and plugin version.
*/
private function set_plugin_constants() {
// Path/URL to root of this plugin, with trailing slash.
if ( ! defined( 'OCDI_PATH' ) ) {
define( 'OCDI_PATH', plugin_dir_path( __FILE__ ) );
}
if ( ! defined( 'OCDI_URL' ) ) {
define( 'OCDI_URL', plugin_dir_url( __FILE__ ) );
}
// Used for backward compatibility.
if ( ! defined( 'PT_OCDI_PATH' ) ) {
define( 'PT_OCDI_PATH', plugin_dir_path( __FILE__ ) );
}
if ( ! defined( 'PT_OCDI_URL' ) ) {
define( 'PT_OCDI_URL', plugin_dir_url( __FILE__ ) );
}
// Action hook to set the plugin version constant.
add_action( 'admin_init', array( $this, 'set_plugin_version_constant' ) );
}
/**
* Set plugin version constant -> OCDI_VERSION.
*/
public function set_plugin_version_constant() {
$plugin_data = get_plugin_data( __FILE__ );
if ( ! defined( 'OCDI_VERSION' ) ) {
define( 'OCDI_VERSION', $plugin_data['Version'] );
}
// Used for backward compatibility.
if ( ! defined( 'PT_OCDI_VERSION' ) ) {
define( 'PT_OCDI_VERSION', $plugin_data['Version'] );
}
}
}
// Instantiate the plugin class.
$ocdi_plugin = new OCDI_Plugin();