show_errors(); if(!function_exists('stopDirectCall')) { //Make sure multiple plugins can be created using WPFrame /// Make sure that the user don't call this file directly - forces the use of the WP interface function stopDirectCall($file) { if(preg_match('#' . basename($file) . '#', $_SERVER['PHP_SELF'])) die('Don\'t call this page directly.'); // Stop direct call } /// Shows a message in the admin interface of Wordpress function showMessage($message, $type='updated') { if($type == 'updated') $class = 'updated fade'; elseif($type == 'error') $class = 'updated error'; else $class = $type; print '

' . __($message, $GLOBALS['wpframe_plugin_name']) . '

'; } /// Globalization function - Returns the transilated string function t($message) { return __($message, $GLOBALS['wpframe_plugin_name']); } /// Globalization function - prints the transilated string function e($message) { _e($message, $GLOBALS['wpframe_plugin_name']); } }