Version Description
Download this release
Release Info
Developer | codestyling |
Plugin | WP Native Dashboard |
Version | 1.0.1 |
Comparing to | |
See all releases |
Code changes from version 1.0 to 1.0.1
- readme.txt +8 -4
- wp-native-dashboard.php +4 -2
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: codestyling
|
|
3 |
Tags: wordpress, dashboard, multi-lingual, languages, backend, localization, plugin
|
4 |
Requires at least: 2.7
|
5 |
Tested up to: 2.9-rare
|
6 |
-
Stable tag: 1.0
|
7 |
|
8 |
Enables selection of administration language either by logon, dashboard quick switcher or user profile setting.
|
9 |
|
@@ -32,7 +32,7 @@ If you have a local WordPress community providing their own downloads for langua
|
|
32 |
1. WordPress version 2.7 and later
|
33 |
1. PHP Interpreter version 4.4.2 or later
|
34 |
|
35 |
-
|
36 |
|
37 |
== Installation ==
|
38 |
|
@@ -43,16 +43,20 @@ Official Website comming soon, is in progress.
|
|
43 |
|
44 |
== Changelog ==
|
45 |
|
|
|
|
|
|
|
|
|
46 |
= Version 1.0 =
|
47 |
* initial version
|
48 |
|
49 |
|
50 |
== Frequently Asked Questions ==
|
51 |
= History? =
|
52 |
-
|
53 |
|
54 |
= Where can I get more information? =
|
55 |
-
|
56 |
|
57 |
|
58 |
== Screenshots ==
|
3 |
Tags: wordpress, dashboard, multi-lingual, languages, backend, localization, plugin
|
4 |
Requires at least: 2.7
|
5 |
Tested up to: 2.9-rare
|
6 |
+
Stable tag: 1.0.1
|
7 |
|
8 |
Enables selection of administration language either by logon, dashboard quick switcher or user profile setting.
|
9 |
|
32 |
1. WordPress version 2.7 and later
|
33 |
1. PHP Interpreter version 4.4.2 or later
|
34 |
|
35 |
+
Please visit [the official website](http://www.code-styling.de/english/development/wordpress-plugin-wp-native-dashboard-en "WP Native Dashboard") for further details, documentation and the latest information on this plugin.
|
36 |
|
37 |
== Installation ==
|
38 |
|
43 |
|
44 |
== Changelog ==
|
45 |
|
46 |
+
= Version 1.0.1 =
|
47 |
+
* Forcing jQuery usage even if a backend page (from another plugin eg.) doesn't make use of.
|
48 |
+
* providing official page link for supporting purpose.
|
49 |
+
|
50 |
= Version 1.0 =
|
51 |
* initial version
|
52 |
|
53 |
|
54 |
== Frequently Asked Questions ==
|
55 |
= History? =
|
56 |
+
Please visit [the official website](http://www.code-styling.de/english/development/wordpress-plugin-wp-native-dashboard-en "WP Native Dashboard") for further details, documentation and the latest information on this plugin.
|
57 |
|
58 |
= Where can I get more information? =
|
59 |
+
Please visit [the official website](http://www.code-styling.de/english/development/wordpress-plugin-wp-native-dashboard-en "WP Native Dashboard") for further details, documentation and the latest information on this plugin.
|
60 |
|
61 |
|
62 |
== Screenshots ==
|
wp-native-dashboard.php
CHANGED
@@ -1,11 +1,11 @@
|
|
1 |
<?php
|
2 |
/*
|
3 |
Plugin Name: WP Native Dashboard
|
4 |
-
Plugin URI: http://www.code-styling.de
|
5 |
Description: You can configure your blog working at administration with different languages depends on users choice and capabilities the admin has been enabled.
|
6 |
Author: Heiko Rabe
|
7 |
Author URI: http://www.code-styling.de/
|
8 |
-
Version: 1.0
|
9 |
|
10 |
License:
|
11 |
==============================================================================
|
@@ -195,6 +195,7 @@ class wp_native_dashboard {
|
|
195 |
require_once(dirname(__FILE__).'/automattic.php');
|
196 |
$this->automattic = new wp_native_dashboard_automattic($this->tagged_version, $this->root_tagged_version);
|
197 |
$this->_load_translation_file();
|
|
|
198 |
}
|
199 |
//do all stuff while we are at admin center
|
200 |
if (is_admin()) {
|
@@ -203,6 +204,7 @@ class wp_native_dashboard {
|
|
203 |
require_once(dirname(__FILE__).'/langswitcher.php');
|
204 |
$this->langswitcher = new wp_native_dashboard_langswitcher($this->plugin_url);
|
205 |
$this->_load_translation_file();
|
|
|
206 |
}
|
207 |
}
|
208 |
}
|
1 |
<?php
|
2 |
/*
|
3 |
Plugin Name: WP Native Dashboard
|
4 |
+
Plugin URI: http://www.code-styling.de/english/development/wordpress-plugin-wp-native-dashboard-en
|
5 |
Description: You can configure your blog working at administration with different languages depends on users choice and capabilities the admin has been enabled.
|
6 |
Author: Heiko Rabe
|
7 |
Author URI: http://www.code-styling.de/
|
8 |
+
Version: 1.0.1
|
9 |
|
10 |
License:
|
11 |
==============================================================================
|
195 |
require_once(dirname(__FILE__).'/automattic.php');
|
196 |
$this->automattic = new wp_native_dashboard_automattic($this->tagged_version, $this->root_tagged_version);
|
197 |
$this->_load_translation_file();
|
198 |
+
if (is_admin()) wp_enqueue_script('jquery');
|
199 |
}
|
200 |
//do all stuff while we are at admin center
|
201 |
if (is_admin()) {
|
204 |
require_once(dirname(__FILE__).'/langswitcher.php');
|
205 |
$this->langswitcher = new wp_native_dashboard_langswitcher($this->plugin_url);
|
206 |
$this->_load_translation_file();
|
207 |
+
wp_enqueue_script('jquery');
|
208 |
}
|
209 |
}
|
210 |
}
|