Version Description
Fix module name error
Download this release
Release Info
Developer | powerblogservice |
Plugin | Footer Putter |
Version | 1.14.1 |
Comparing to | |
See all releases |
Code changes from version 1.14 to 1.14.1
- classes/class-admin.php +2 -2
- main.php +2 -2
- readme.txt +6 -5
classes/class-admin.php
CHANGED
@@ -138,7 +138,7 @@ abstract class Footer_Putter_Admin {
|
|
138 |
function form_field($id, $name, $label, $value, $type, $options = array(), $args = array(), $wrap = false) {
|
139 |
if (!$label) $label = $id;
|
140 |
$label_args = (is_array($args) && array_key_exists('label_args', $args)) ? $args['label_args'] : false;
|
141 |
-
return
|
142 |
}
|
143 |
|
144 |
function meta_form_field($meta, $key, $type, $options=array(), $args=array()) {
|
@@ -239,7 +239,7 @@ abstract class Footer_Putter_Admin {
|
|
239 |
|
240 |
function admin_heading($title = '', $icon_class = '') {
|
241 |
if (empty($title)) $title = sprintf('%1$s %2$s', ucwords(str_replace('-',' ',$this->slug)), $this->get_version());
|
242 |
-
if (empty($icon_class)) $icon_class =
|
243 |
$icon = sprintf('<i class="%1$s"></i>', 'dashicons-'==substr($icon_class,0,10) ? ('dashicons '.$icon_class) : $icon_class) ;
|
244 |
return sprintf('<h2 class="title">%2$s%1$s</h2>', $title, $icon);
|
245 |
}
|
138 |
function form_field($id, $name, $label, $value, $type, $options = array(), $args = array(), $wrap = false) {
|
139 |
if (!$label) $label = $id;
|
140 |
$label_args = (is_array($args) && array_key_exists('label_args', $args)) ? $args['label_args'] : false;
|
141 |
+
return Footer_Putter_Utils::form_field($id, $name, $this->tooltips->tip($label, $label_args), $value, $type, $options, $args, $wrap);
|
142 |
}
|
143 |
|
144 |
function meta_form_field($meta, $key, $type, $options=array(), $args=array()) {
|
239 |
|
240 |
function admin_heading($title = '', $icon_class = '') {
|
241 |
if (empty($title)) $title = sprintf('%1$s %2$s', ucwords(str_replace('-',' ',$this->slug)), $this->get_version());
|
242 |
+
if (empty($icon_class)) $icon_class = FOOTER_PUTTER_ICON;
|
243 |
$icon = sprintf('<i class="%1$s"></i>', 'dashicons-'==substr($icon_class,0,10) ? ('dashicons '.$icon_class) : $icon_class) ;
|
244 |
return sprintf('<h2 class="title">%2$s%1$s</h2>', $title, $icon);
|
245 |
}
|
main.php
CHANGED
@@ -3,13 +3,13 @@
|
|
3 |
* Plugin Name: Footer Putter
|
4 |
* Plugin URI: http://www.diywebmastery.com/plugins/footer-putter/
|
5 |
* Description: Put a footer on your site that boosts your credibility with both search engines and human visitors.
|
6 |
-
* Version: 1.14
|
7 |
* Author: Russell Jamieson
|
8 |
* Author URI: http://www.diywebmastery.com/about/
|
9 |
* License: GPLv2+
|
10 |
* License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
11 |
*/
|
12 |
-
define('FOOTER_PUTTER_VERSION','1.14');
|
13 |
define('FOOTER_PUTTER_FRIENDLY_NAME', 'Footer Putter') ;
|
14 |
define('FOOTER_PUTTER_DOMAIN', 'FOOTER_PUTTER_DOMAIN') ;
|
15 |
define('FOOTER_PUTTER_PATH', plugin_basename(__FILE__)) ;
|
3 |
* Plugin Name: Footer Putter
|
4 |
* Plugin URI: http://www.diywebmastery.com/plugins/footer-putter/
|
5 |
* Description: Put a footer on your site that boosts your credibility with both search engines and human visitors.
|
6 |
+
* Version: 1.14.1
|
7 |
* Author: Russell Jamieson
|
8 |
* Author URI: http://www.diywebmastery.com/about/
|
9 |
* License: GPLv2+
|
10 |
* License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
11 |
*/
|
12 |
+
define('FOOTER_PUTTER_VERSION','1.14.1');
|
13 |
define('FOOTER_PUTTER_FRIENDLY_NAME', 'Footer Putter') ;
|
14 |
define('FOOTER_PUTTER_DOMAIN', 'FOOTER_PUTTER_DOMAIN') ;
|
15 |
define('FOOTER_PUTTER_PATH', plugin_basename(__FILE__)) ;
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: http://www.diywebmastery.com/donate/
|
|
4 |
Tags: footer, copyright, trademark
|
5 |
Requires at least: 3.1
|
6 |
Tested up to: 4.3
|
7 |
-
Stable tag: 1.14
|
8 |
License: GPLv2+
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -48,7 +48,9 @@ Put a footer on your site that boosts your credibility with both search engines
|
|
48 |
|
49 |
== Changelog ==
|
50 |
|
51 |
-
= 1.14 =
|
|
|
|
|
52 |
|
53 |
= 1.13 =
|
54 |
|
@@ -60,14 +62,13 @@ Put a footer on your site that boosts your credibility with both search engines
|
|
60 |
|
61 |
= 1.12 = Updated for WordPress 4.1, bug fix to privacy page terms, and added useful links and DIYWebmastery news feed sections in the sidebar
|
62 |
|
63 |
-
= 1.11 = Add option to set Copyright Text
|
64 |
|
65 |
For full version history please see http://www.diywebmastery.com/plugins/footer-putter/footer-putter-version-history/
|
66 |
|
67 |
== Upgrade Notice ==
|
68 |
|
69 |
-
= 1.14 =
|
70 |
-
*
|
71 |
|
72 |
== Links ==
|
73 |
|
4 |
Tags: footer, copyright, trademark
|
5 |
Requires at least: 3.1
|
6 |
Tested up to: 4.3
|
7 |
+
Stable tag: 1.14.1
|
8 |
License: GPLv2+
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
48 |
|
49 |
== Changelog ==
|
50 |
|
51 |
+
= 1.14.1 = Fix module name error
|
52 |
+
|
53 |
+
= 1.14 = Support for email address encoding
|
54 |
|
55 |
= 1.13 =
|
56 |
|
62 |
|
63 |
= 1.12 = Updated for WordPress 4.1, bug fix to privacy page terms, and added useful links and DIYWebmastery news feed sections in the sidebar
|
64 |
|
|
|
65 |
|
66 |
For full version history please see http://www.diywebmastery.com/plugins/footer-putter/footer-putter-version-history/
|
67 |
|
68 |
== Upgrade Notice ==
|
69 |
|
70 |
+
= 1.14.1 =
|
71 |
+
* Mandatory - Fix module name error
|
72 |
|
73 |
== Links ==
|
74 |
|