dispatch('New Installation'); } /* * Sets admin warnings regarding required PHP version. */ function _grd_php_warning() { $data = get_plugin_data(__FILE__); echo '

' . __('Warning:') . ' ' . sprintf(__('The active plugin %s is not compatible with your installed PHP version.') .'

', '«' . $data['Name'] . ' ' . $data['Version'] . '»') . sprintf(__('%s is required for this plugin.'), 'PHP 5 '); echo '

'; } // START PROCEDURE // Check required PHP version. if ( version_compare(PHP_VERSION, '5.0', '<')) { add_action('admin_notices', '_grd_php_warning'); } else { include_once ( GRD_BASE_INC_URL . '/core.class.php' ); $greader = new GRDplugin(); $greader->load(); } ?>