/** * wordactor * * @package wordactor * @author William P. Michaels * @copyright 2016 William P. Michaels * @license * * @wordpress-plugin * Plugin Name: wordactor * Plugin URI: https://bitbucket.org/psiphonshiniz/wordactor * Description: Wordpress plugin to manage content server wide * Version: 0.0.1 * Author: William P. Michaels * Author URI: https://shiniz.com * Text Domain: dctr * License: BSD-2-Clause * License URI: * */ /** * wordactor * * @package wordactor * @author William P. Michaels * @copyright 2016 William P. Michaels * @license * * @wordpress-plugin * Plugin Name: wordactor * Plugin URI: https://bitbucket.org/psiphonshiniz/wordactor * Description: Wordpress plugin to manage content server wide * Version: 0.0.1 * Author: William P. Michaels * Author URI: https://shiniz.com * Text Domain: dctr * License: BSD-2-Clause * License URI: * */ '. __( 'Error: plugin "'. $dctr_PLUGIN_PUBLIC_NAME. '" is not compatible with the current version of PHP. (requires php > '. $dctr_PHP_MINIMUM_VERSION . ')', $dctr_PLUGIN_PRIVATE_NAME ). '
'; } function dctr_isCompatiblePhp() { global $dctr_PHP_MINIMUM_VERSION; return version_compare(phpversion(), $dctr_PHP_MINIMUM_VERSION) < 0; } function dctr_i18n_init() { $pluginDir = dirname(plugin_basename(__FILE__)); load_plugin_textdomain($dctr_PLUGIN_PRIVATE_NAME, false, $pluginDir . '/languages/'); } ?>