diff --git a/classes/admin.php b/classes/admin.php
index a9232e8..7f8dacd 100644
--- a/classes/admin.php
+++ b/classes/admin.php
@@ -63,6 +63,9 @@ class MCI_Footnotes_Admin {
// load tab 'how to'
require_once(dirname( __FILE__ ) . "/tab_howto.php");
new MCI_Footnotes_Tab_HowTo($this->a_arr_SettingsTabs);
+ // load tab 'diagnostics'
+ require_once(dirname( __FILE__ ) . "/tab_diagnostics.php");
+ new MCI_Footnotes_Tab_Diagnostics($this->a_arr_SettingsTabs);
}
/**
@@ -116,7 +119,7 @@ class MCI_Footnotes_Admin {
do_settings_sections(self::$a_str_ActiveTab);
do_meta_boxes(self::$a_str_ActiveTab, 'main', NULL);
// adds a submit button to the current page
- if (self::$a_str_ActiveTab != FOOTNOTES_SETTINGS_TAB_HOWTO) {
+ if (self::$a_str_ActiveTab != FOOTNOTES_SETTINGS_TAB_HOWTO && self::$a_str_ActiveTab != FOOTNOTES_SETTINGS_TAB_DIAGNOSTICS) {
submit_button();
}
echo '';
diff --git a/classes/tab_diagnostics.php b/classes/tab_diagnostics.php
new file mode 100644
index 0000000..529c16b
--- /dev/null
+++ b/classes/tab_diagnostics.php
@@ -0,0 +1,119 @@
+';
+ echo '
';
+
+ // website
+ echo '';
+ echo '' . $this->Highlight(__('Server name', FOOTNOTES_PLUGIN_NAME)) . ' | ';
+ echo '' . $_SERVER["SERVER_NAME"] . ' | ';
+ echo '
';
+
+ // PHP version
+ echo '';
+ echo '' . $this->Highlight(__('PHP version', FOOTNOTES_PLUGIN_NAME)) . ' | ';
+ echo '' . phpversion() . ' | ';
+ echo '
';
+
+ // max. execution time
+ echo '';
+ echo '' . $this->Highlight(__('Max execution time', FOOTNOTES_PLUGIN_NAME)) . ' | ';
+ echo '' . ini_get('max_execution_time') . ' ' . __('seconds', FOOTNOTES_PLUGIN_NAME) . ' | ';
+ echo '
';
+
+ // memory limit
+ echo '';
+ echo '' . $this->Highlight(__('Memory limit', FOOTNOTES_PLUGIN_NAME)) . ' | ';
+ echo '' . ini_get('memory_limit') . ' | ';
+ echo '
';
+
+ // PHP extensions
+ echo '';
+ echo '' . $this->Highlight(__('PHP extensions', FOOTNOTES_PLUGIN_NAME)) . ' | ';
+ echo '';
+ foreach (get_loaded_extensions() as $l_int_Index => $l_str_Extension) {
+ if ($l_int_Index > 0) {
+ echo ' | ';
+ }
+ echo $l_str_Extension . ' ' . phpversion($l_str_Extension);
+ }
+ echo ' | ';
+ echo '
';
+
+ // WordPress version
+ echo '';
+ echo '' . $this->Highlight(__('WordPress version', FOOTNOTES_PLUGIN_NAME)) . ' | ';
+ echo '' . $wp_version . ' | ';
+ echo '
';
+
+ // WordPress Plugins installed
+ foreach (get_plugins() as $l_arr_Plugin) {
+ echo '';
+ echo '' . $this->Highlight($l_arr_Plugin["Name"]) . ' | ';
+ echo '' . $l_arr_Plugin["Version"] . ' [' . $l_arr_Plugin["PluginURI"] . ']' . ' | ';
+ echo '
';
+ }
+
+ echo '';
+ echo '';
+ }
+} // class MCI_Footnotes_Tab_Diagnostics
+
+endif;
\ No newline at end of file
diff --git a/classes/tab_howto.php b/classes/tab_howto.php
index fdc551c..c8d05f6 100644
--- a/classes/tab_howto.php
+++ b/classes/tab_howto.php
@@ -41,6 +41,14 @@ class MCI_Footnotes_Tab_HowTo extends MCI_Footnotes_Admin {
FOOTNOTES_SETTINGS_TAB_HOWTO,
'main'
);
+ // donate
+ add_meta_box(
+ 'MCI_Footnotes_Tab_HowTo_Donate',
+ __("Help us to improve our Plugin.", FOOTNOTES_PLUGIN_NAME),
+ array($this, 'Donate'),
+ FOOTNOTES_SETTINGS_TAB_HOWTO,
+ 'main'
+ );
}
/**
@@ -91,12 +99,21 @@ class MCI_Footnotes_Tab_HowTo extends MCI_Footnotes_Admin {
- ', ''); ?>
+ ', ''); ?>
';
+ }
} // class MCI_Footnotes_Tab_HowTo
endif;
\ No newline at end of file
diff --git a/includes/defines.php b/includes/defines.php
index 720e873..bbcf471 100644
--- a/includes/defines.php
+++ b/includes/defines.php
@@ -36,7 +36,7 @@ define("FOOTNOTES_SETTINGS_PAGE_ID", "footnotes"); // plugins setting page inter
define("FOOTNOTES_SETTINGS_TAB_GENERAL", "footnotes_general_settings"); // internal label for the plugins general settings tab
define("FOOTNOTES_SETTINGS_TAB_CUSTOM", "footnotes_custom_settings"); // internal label for the plugins custom settings tab
define("FOOTNOTES_SETTINGS_TAB_HOWTO", "footnotes_howto_settings"); // internal label for the plugins how to tab
-
+define("FOOTNOTES_SETTINGS_TAB_DIAGNOSTICS", "footnotes_diagnostics_settings"); // internal label for the plugins diagnostics tab
// PLUGIN SETTINGS INPUT FIELDS
define("FOOTNOTES_INPUT_COMBINE_IDENTICAL", "footnote_inputfield_combine_identical"); // id of input field for the combine identical setting
diff --git a/includes/plugin-settings.php b/includes/plugin-settings.php
index d8c846b..d59511d 100644
--- a/includes/plugin-settings.php
+++ b/includes/plugin-settings.php
@@ -21,13 +21,16 @@ add_filter("plugin_action_links_{$l_str_plugin_file}", 'MCI_Footnotes_PluginLink
*/
function MCI_Footnotes_PluginLinks($p_arr_Links, $p_str_File) {
// add link to the footnotes plugin settings page
- $l_str_SettingsLink = '' . __('Settings', FOOTNOTES_PLUGIN_NAME) . '';
+ $l_str_Settings = '' . __('Settings', FOOTNOTES_PLUGIN_NAME) . '';
// add link to the footnotes plugin support page on wordpress.org
- $l_str_SupportLink = '' . __('Support', FOOTNOTES_PLUGIN_NAME) . '';
+ $l_str_Support = '' . __('Support', FOOTNOTES_PLUGIN_NAME) . '';
+ // add link to Donate
+ $l_str_Donate = '' . __('Donate', FOOTNOTES_PLUGIN_NAME) . '';
// add defined links to the plugin main page
- $p_arr_Links[] = $l_str_SupportLink;
- $p_arr_Links[] = $l_str_SettingsLink;
+ $p_arr_Links[] = $l_str_Support;
+ $p_arr_Links[] = $l_str_Settings;
+ $p_arr_Links[] = $l_str_Donate;
// return new links
return $p_arr_Links;
diff --git a/index.php b/index.php
index 0903a83..a397780 100755
--- a/index.php
+++ b/index.php
@@ -4,7 +4,7 @@
Plugin URI: http://wordpress.org/plugins/footnotes/
Description: time to bring footnotes to your website! footnotes are known from offline publishing and everybody takes them for granted when reading a magazine.
Author: ManFisher Medien ManuFaktur
- Version: 1.3.4
+ Version: 1.4.0
Author URI: http://manfisher.net/plugins/footnotes/
Text Domain: footnotes
Domain Path: /languages
diff --git a/languages/footnotes-de.mo b/languages/footnotes-de.mo
index fecca79..0214dcf 100755
Binary files a/languages/footnotes-de.mo and b/languages/footnotes-de.mo differ
diff --git a/languages/footnotes-de.po b/languages/footnotes-de.po
index ba7f7c2..b49127c 100755
--- a/languages/footnotes-de.po
+++ b/languages/footnotes-de.po
@@ -1,15 +1,15 @@
msgid ""
msgstr ""
"Project-Id-Version: footnotes\n"
-"POT-Creation-Date: 2014-08-21 10:29+0100\n"
-"PO-Revision-Date: 2014-08-21 10:35+0100\n"
+"POT-Creation-Date: 2014-09-07 03:43+0100\n"
+"PO-Revision-Date: 2014-09-07 03:46+0100\n"
"Last-Translator: Stefan Herndler \n"
"Language-Team: SHE \n"
"Language: de\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Poedit 1.6.6\n"
+"X-Generator: Poedit 1.6.5\n"
"X-Poedit-Basepath: ..\n"
"X-Poedit-SourceCharset: UTF-8\n"
"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
@@ -18,11 +18,11 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Poedit-SearchPath-0: .\n"
-#: classes/footnotes.php:79
+#: classes/footnotes.php:82
msgid "You must be logged in to run this script."
msgstr "Sie müssen angemeldet sein um diese Funktion ausführen zu können."
-#: classes/footnotes.php:84
+#: classes/footnotes.php:87
msgid "You do not have permission to run this script."
msgstr "Sie haben nicht die Berechtigung diese Funktion auszuführen."
@@ -93,6 +93,42 @@ msgstr "Einzelnachweiß - Symbol für den Link"
msgid "reference container footnotes text"
msgstr "Einzelnachweis - Fußnote"
+#: classes/tab_diagnostics.php:27
+msgid "Diagnostics"
+msgstr "Diagnose"
+
+#: classes/tab_diagnostics.php:38
+msgid "Displays information about the web server, PHP and WordPress."
+msgstr "Ausgabe von Informationen bezgl. des Webservers, PHP und WordPress."
+
+#: classes/tab_diagnostics.php:65
+msgid "Server name"
+msgstr "Servername"
+
+#: classes/tab_diagnostics.php:71
+msgid "PHP version"
+msgstr "PHP Version"
+
+#: classes/tab_diagnostics.php:77
+msgid "Max execution time"
+msgstr "max. Ausführungsdauer"
+
+#: classes/tab_diagnostics.php:78
+msgid "seconds"
+msgstr "Sekunden"
+
+#: classes/tab_diagnostics.php:83
+msgid "Memory limit"
+msgstr "Speicherlimitierung"
+
+#: classes/tab_diagnostics.php:89
+msgid "PHP extensions"
+msgstr "PHP Erweiterungen"
+
+#: classes/tab_diagnostics.php:102
+msgid "WordPress version"
+msgstr "WordPress Version"
+
#: classes/tab_general.php:28
msgid "General"
msgstr "Allgemein"
@@ -237,26 +273,38 @@ msgstr "Hilfe"
msgid "Brief introduction in how to use the plugin"
msgstr "Kurze Anleitung für die Verwendung des Plugins."
-#: classes/tab_howto.php:69
+#: classes/tab_howto.php:47
+msgid "Help us to improve our Plugin."
+msgstr "Helfen Sie bei der weiteren Entwicklung des Plugins."
+
+#: classes/tab_howto.php:77
msgid "example string"
msgstr "Beispieltext"
-#: classes/tab_howto.php:74
+#: classes/tab_howto.php:82
msgid "Start your footnote with the following shortcode:"
msgstr "Starten Sie eine Fußnote mit:"
-#: classes/tab_howto.php:80
+#: classes/tab_howto.php:88
msgid "...and end your footnote with this shortcode:"
msgstr "...und beenden Sie diese mit:"
-#: classes/tab_howto.php:88
+#: classes/tab_howto.php:96
msgid "will be displayed as:"
msgstr "wird dargestellt als:"
-#: classes/tab_howto.php:94
+#: classes/tab_howto.php:102
#, php-format
-msgid "If you have any questions, please don't hesitate to %se-mail%s us."
-msgstr "Bei Fragen können Sie uns gerne eine %se-Mail%s senden."
+msgid ""
+"For further information please check out our %ssupport forum%s on WordPress."
+"org."
+msgstr ""
+"Für mehr Informationen besuchen Sie unser %sSupport Forum%s auf WordPress."
+"org."
+
+#: classes/tab_howto.php:115
+msgid "Donate now"
+msgstr "Jetzt spenden"
#: classes/widget.php:25 classes/widget.php:43
msgid ""
@@ -274,6 +322,13 @@ msgstr "Einstellungen"
msgid "Support"
msgstr "Support"
+#: includes/plugin-settings.php:28
+msgid "Donate"
+msgstr "Spenden"
+
+#~ msgid "If you have any questions, please don't hesitate to %se-mail%s us."
+#~ msgstr "Bei Fragen können Sie uns gerne eine %se-Mail%s senden."
+
#~ msgid "HowTo"
#~ msgstr "Hilfe"
diff --git a/languages/footnotes-en.mo b/languages/footnotes-en.mo
index eb0d465..33f6d65 100755
Binary files a/languages/footnotes-en.mo and b/languages/footnotes-en.mo differ
diff --git a/languages/footnotes-en.po b/languages/footnotes-en.po
index dd1ba33..5d94c74 100755
--- a/languages/footnotes-en.po
+++ b/languages/footnotes-en.po
@@ -1,15 +1,15 @@
msgid ""
msgstr ""
"Project-Id-Version: footnotes\n"
-"POT-Creation-Date: 2014-08-21 10:24+0100\n"
-"PO-Revision-Date: 2014-08-21 10:29+0100\n"
+"POT-Creation-Date: 2014-09-07 03:43+0100\n"
+"PO-Revision-Date: 2014-09-07 03:43+0100\n"
"Last-Translator: Stefan Herndler \n"
"Language-Team: SHE \n"
"Language: en\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Poedit 1.6.6\n"
+"X-Generator: Poedit 1.6.5\n"
"X-Poedit-Basepath: ..\n"
"X-Poedit-SourceCharset: UTF-8\n"
"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
@@ -18,11 +18,11 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Poedit-SearchPath-0: .\n"
-#: classes/footnotes.php:79
+#: classes/footnotes.php:82
msgid "You must be logged in to run this script."
msgstr "You must be logged in to run this script."
-#: classes/footnotes.php:84
+#: classes/footnotes.php:87
msgid "You do not have permission to run this script."
msgstr "You do not have permission to run this script."
@@ -92,6 +92,42 @@ msgstr "reference container footnotes linked arrow"
msgid "reference container footnotes text"
msgstr "reference container footnotes text"
+#: classes/tab_diagnostics.php:27
+msgid "Diagnostics"
+msgstr "Diagnostics"
+
+#: classes/tab_diagnostics.php:38
+msgid "Displays information about the web server, PHP and WordPress."
+msgstr "Displays information about the web server, PHP and WordPress."
+
+#: classes/tab_diagnostics.php:65
+msgid "Server name"
+msgstr "Server name"
+
+#: classes/tab_diagnostics.php:71
+msgid "PHP version"
+msgstr "PHP version"
+
+#: classes/tab_diagnostics.php:77
+msgid "Max execution time"
+msgstr "Max execution time"
+
+#: classes/tab_diagnostics.php:78
+msgid "seconds"
+msgstr "seconds"
+
+#: classes/tab_diagnostics.php:83
+msgid "Memory limit"
+msgstr "Memory limit"
+
+#: classes/tab_diagnostics.php:89
+msgid "PHP extensions"
+msgstr "PHP extensions"
+
+#: classes/tab_diagnostics.php:102
+msgid "WordPress version"
+msgstr "WordPress version"
+
#: classes/tab_general.php:28
msgid "General"
msgstr "General"
@@ -236,26 +272,38 @@ msgstr "How to"
msgid "Brief introduction in how to use the plugin"
msgstr "Brief introduction in how to use the plugin"
-#: classes/tab_howto.php:69
+#: classes/tab_howto.php:47
+msgid "Help us to improve our Plugin."
+msgstr "Help us to improve our Plugin."
+
+#: classes/tab_howto.php:77
msgid "example string"
msgstr "example string"
-#: classes/tab_howto.php:74
+#: classes/tab_howto.php:82
msgid "Start your footnote with the following shortcode:"
msgstr "Start your footnote with the following shortcode:"
-#: classes/tab_howto.php:80
+#: classes/tab_howto.php:88
msgid "...and end your footnote with this shortcode:"
msgstr "...and end your footnote with this shortcode:"
-#: classes/tab_howto.php:88
+#: classes/tab_howto.php:96
msgid "will be displayed as:"
msgstr "will be displayed as:"
-#: classes/tab_howto.php:94
+#: classes/tab_howto.php:102
#, php-format
-msgid "If you have any questions, please don't hesitate to %se-mail%s us."
-msgstr "If you have any questions, please don't hesitate to %se-mail%s us."
+msgid ""
+"For further information please check out our %ssupport forum%s on WordPress."
+"org."
+msgstr ""
+"For further information please check out our %ssupport forum%s on WordPress."
+"org."
+
+#: classes/tab_howto.php:115
+msgid "Donate now"
+msgstr "Donate now"
#: classes/widget.php:25 classes/widget.php:43
msgid ""
@@ -273,6 +321,13 @@ msgstr "Settings"
msgid "Support"
msgstr "Support"
+#: includes/plugin-settings.php:28
+msgid "Donate"
+msgstr "Donate"
+
+#~ msgid "If you have any questions, please don't hesitate to %se-mail%s us."
+#~ msgstr "If you have any questions, please don't hesitate to %se-mail%s us."
+
#~ msgid "HowTo"
#~ msgstr "HowTo"
diff --git a/readme.txt b/readme.txt
index a53d3d9..588817b 100755
--- a/readme.txt
+++ b/readme.txt
@@ -6,7 +6,7 @@ Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_i
Tested up to: 4.0
License: GPLv3 or later
License URI: http://www.gnu.org/licenses/gpl-3.0.html
-Stable Tag: 1.3.4
+Stable Tag: 1.4.0
== Description ==
@@ -74,6 +74,11 @@ Visit this swift write-up from a **footnotes** user by the name of **Southwest**
= 1.4.0 =
- Feature: WPML Config XML file for easy multi language string translation (WPML String Translation Support File)
+- Update: Changed e-Mail support address to the WordPress support forum
+- Update: Language EN and DE
+- Add: Tab for Plugin Diagnostics
+- Add: Donate link to the installed Plugin overview page
+- Add: Donate button to the "HowTo" tab
= 1.3.4 =
- Bugfix: Settings access permission vor sub-sites