Version Description
(2016-11-06) = * Some style tweaks to the settings page. * Fix unexpected output on plugin activation.
Download this release
Release Info
Developer | grimmdude |
Plugin | All In One Favicon |
Version | 4.5 |
Comparing to | |
See all releases |
Code changes from version 4.4 to 4.5
- README.md +11 -4
- all-in-one-favicon.php +3 -4
- includes/settings-page.php +3 -3
- includes/settings-page/sp-delete-settings.php +1 -2
- includes/settings-page/sp-left-column.php +1 -1
- includes/settings-page/sp-plugin-favicon-settings.php +1 -2
- includes/settings-page/sp-plugin-meta-settings.php +1 -2
- includes/settings-page/sp-tipps-box.php +1 -2
- readme.txt +5 -3
README.md
CHANGED
@@ -4,7 +4,7 @@ Donate link: http://www.techotronic.de/donate/
|
|
4 |
Tags: theme, favicon, admin, blog, wordpress, image, images, graphic, graphics, icon, iphone, multisite
|
5 |
Requires at least: 2.8
|
6 |
Tested up to: 4.6.1
|
7 |
-
Stable tag: 4.
|
8 |
|
9 |
Easily add a Favicon to your site and the WordPress admin pages. Complete with upload functionality. Supports all three Favicon types (ico,png,gif).
|
10 |
|
@@ -16,9 +16,7 @@ All In One Favicon adds favicons to your site and your admin pages.
|
|
16 |
You can either use favicons you already uploaded or use the builtin upload mechanism to upload a favicon to your WordPress installation.
|
17 |
|
18 |
All three favicon types are supported - .ico, .png and .gif (may be animated)
|
19 |
-
Also, Apple Touch Icons are supported.
|
20 |
-
|
21 |
-
See [plugin page](http://www.techotronic.de/plugins/all-in-one-favicon/) for more information, a "first steps" guide and screenshots.
|
22 |
|
23 |
**Localization**
|
24 |
|
@@ -97,6 +95,15 @@ Go to the settings page and and upload your Favicon(s) or add the path/URL to al
|
|
97 |
|
98 |
|
99 |
## Changelog ##
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
100 |
### 4.3 (2012-02-21) ###
|
101 |
* BUGFIX: File upload will now work in certain browsers, e.g. Internet Explorer and Safari 5
|
102 |
* NEW: Portuguese translation by Miguel Ângelo Patricio
|
4 |
Tags: theme, favicon, admin, blog, wordpress, image, images, graphic, graphics, icon, iphone, multisite
|
5 |
Requires at least: 2.8
|
6 |
Tested up to: 4.6.1
|
7 |
+
Stable tag: 4.5
|
8 |
|
9 |
Easily add a Favicon to your site and the WordPress admin pages. Complete with upload functionality. Supports all three Favicon types (ico,png,gif).
|
10 |
|
16 |
You can either use favicons you already uploaded or use the builtin upload mechanism to upload a favicon to your WordPress installation.
|
17 |
|
18 |
All three favicon types are supported - .ico, .png and .gif (may be animated)
|
19 |
+
Also, Apple Touch Icons are supported.
|
|
|
|
|
20 |
|
21 |
**Localization**
|
22 |
|
95 |
|
96 |
|
97 |
## Changelog ##
|
98 |
+
|
99 |
+
### 4.5 (2016-11-06) ###
|
100 |
+
* Some style tweaks to the settings page.
|
101 |
+
* Fix unexpected output on plugin activation.
|
102 |
+
|
103 |
+
### 4.4 (2016-10-26) ###
|
104 |
+
* BUGFIX: Fix undefined index notices.
|
105 |
+
* BUGFIX: Use __construct() for PHP7 compatibility.
|
106 |
+
|
107 |
### 4.3 (2012-02-21) ###
|
108 |
* BUGFIX: File upload will now work in certain browsers, e.g. Internet Explorer and Safari 5
|
109 |
* NEW: Portuguese translation by Miguel Ângelo Patricio
|
all-in-one-favicon.php
CHANGED
@@ -6,7 +6,7 @@
|
|
6 |
* Plugin Name: All in one Favicon
|
7 |
* Plugin URI: http://www.techotronic.de/plugins/all-in-one-favicon/
|
8 |
* Description: All in one Favicon management. Easily add a Favicon to your site and the WordPress admin pages. Complete with upload functionality. Supports all three Favicon types (ico,png,gif)
|
9 |
-
* Version: 4.
|
10 |
* Author: Arne Franken
|
11 |
* Author URI: http://www.techotronic.de/
|
12 |
* License: GPL
|
@@ -23,7 +23,7 @@ require_once (dirname (__FILE__) . '/includes/donationloader.php');
|
|
23 |
require_once (dirname (__FILE__) . '/includes/debugger.php');
|
24 |
|
25 |
// define constants
|
26 |
-
define('AIOFAVICON_VERSION', '4.
|
27 |
|
28 |
if (!defined('AIOFAVICON_PLUGIN_BASENAME')) {
|
29 |
//all-in-one-favicon/all-in-one-favicon.php
|
@@ -209,5 +209,4 @@ add_action('init', 'initAioFavicon', 7);
|
|
209 |
//add_action('init', array('AllInOneFavicon','AllInOneFavicon'), 7);
|
210 |
|
211 |
// register method for activation
|
212 |
-
register_activation_hook(__FILE__, array('AllInOneFavicon', 'activateAioFavicon'));
|
213 |
-
?>
|
6 |
* Plugin Name: All in one Favicon
|
7 |
* Plugin URI: http://www.techotronic.de/plugins/all-in-one-favicon/
|
8 |
* Description: All in one Favicon management. Easily add a Favicon to your site and the WordPress admin pages. Complete with upload functionality. Supports all three Favicon types (ico,png,gif)
|
9 |
+
* Version: 4.5
|
10 |
* Author: Arne Franken
|
11 |
* Author URI: http://www.techotronic.de/
|
12 |
* License: GPL
|
23 |
require_once (dirname (__FILE__) . '/includes/debugger.php');
|
24 |
|
25 |
// define constants
|
26 |
+
define('AIOFAVICON_VERSION', '4.5');
|
27 |
|
28 |
if (!defined('AIOFAVICON_PLUGIN_BASENAME')) {
|
29 |
//all-in-one-favicon/all-in-one-favicon.php
|
209 |
//add_action('init', array('AllInOneFavicon','AllInOneFavicon'), 7);
|
210 |
|
211 |
// register method for activation
|
212 |
+
//register_activation_hook(__FILE__, array('AllInOneFavicon', 'activateAioFavicon'));
|
|
includes/settings-page.php
CHANGED
@@ -28,7 +28,7 @@
|
|
28 |
?>
|
29 |
<div>
|
30 |
<?php screen_icon(); ?>
|
31 |
-
<
|
32 |
<br class="clear"/>
|
33 |
|
34 |
<div class="updated" id="javascriptWarning" style="background-color:#f66;">
|
@@ -37,10 +37,10 @@
|
|
37 |
|
38 |
<?php
|
39 |
require_once 'settings-page/sp-left-column.php';
|
40 |
-
require_once 'settings-page/sp-right-column.php';
|
41 |
?>
|
42 |
</div>
|
43 |
<?php
|
44 |
-
require_once 'settings-page/sp-footer.php';
|
45 |
?>
|
46 |
</div>
|
28 |
?>
|
29 |
<div>
|
30 |
<?php screen_icon(); ?>
|
31 |
+
<h1><?php echo AIOFAVICON_NAME . ' ' . __('Settings', AIOFAVICON_TEXTDOMAIN); ?></h1>
|
32 |
<br class="clear"/>
|
33 |
|
34 |
<div class="updated" id="javascriptWarning" style="background-color:#f66;">
|
37 |
|
38 |
<?php
|
39 |
require_once 'settings-page/sp-left-column.php';
|
40 |
+
//require_once 'settings-page/sp-right-column.php';
|
41 |
?>
|
42 |
</div>
|
43 |
<?php
|
44 |
+
//require_once 'settings-page/sp-footer.php';
|
45 |
?>
|
46 |
</div>
|
includes/settings-page/sp-delete-settings.php
CHANGED
@@ -11,9 +11,8 @@
|
|
11 |
?>
|
12 |
<div id="poststuff">
|
13 |
<div id="aio-favicon-delete_settings" class="postbox">
|
14 |
-
<h3 id="delete_options"><?php _e('Delete Settings', AIOFAVICON_TEXTDOMAIN) ?></h3>
|
15 |
-
|
16 |
<div class="inside">
|
|
|
17 |
<p><?php _e('Check the box and click this button to delete settings of this plugin.', AIOFAVICON_TEXTDOMAIN); ?></p>
|
18 |
|
19 |
<form name="delete_settings" method="post" action="admin-post.php">
|
11 |
?>
|
12 |
<div id="poststuff">
|
13 |
<div id="aio-favicon-delete_settings" class="postbox">
|
|
|
|
|
14 |
<div class="inside">
|
15 |
+
<h3 id="delete_options"><?php _e('Delete Settings', AIOFAVICON_TEXTDOMAIN) ?></h3>
|
16 |
<p><?php _e('Check the box and click this button to delete settings of this plugin.', AIOFAVICON_TEXTDOMAIN); ?></p>
|
17 |
|
18 |
<form name="delete_settings" method="post" action="admin-post.php">
|
includes/settings-page/sp-left-column.php
CHANGED
@@ -9,7 +9,7 @@
|
|
9 |
* Left column for settings page
|
10 |
*/
|
11 |
?>
|
12 |
-
<div class="postbox-container"
|
13 |
<form id="aio-favicon-settings-update" name="aio-favicon-settings-update" enctype="multipart/form-data" method="post" action="admin-post.php">
|
14 |
<?php if (function_exists('wp_nonce_field') === true) wp_nonce_field('aio-favicon-settings-form'); ?>
|
15 |
<input type='hidden' value="<?php echo AIOFAVICON_SETTINGSNAME ?>" name="option_page"/>
|
9 |
* Left column for settings page
|
10 |
*/
|
11 |
?>
|
12 |
+
<div class="postbox-container">
|
13 |
<form id="aio-favicon-settings-update" name="aio-favicon-settings-update" enctype="multipart/form-data" method="post" action="admin-post.php">
|
14 |
<?php if (function_exists('wp_nonce_field') === true) wp_nonce_field('aio-favicon-settings-form'); ?>
|
15 |
<input type='hidden' value="<?php echo AIOFAVICON_SETTINGSNAME ?>" name="option_page"/>
|
includes/settings-page/sp-plugin-favicon-settings.php
CHANGED
@@ -10,9 +10,8 @@
|
|
10 |
*/
|
11 |
?>
|
12 |
<div id="aio-favicon-<?php echo $this->identifier ?>-settings" class="postbox">
|
13 |
-
<h3 id="<?php echo $this->identifier ?>-settings"><?php echo $this->translatedIdentifier; echo " "; _e('Settings', AIOFAVICON_TEXTDOMAIN); ?></h3>
|
14 |
-
|
15 |
<div class="inside">
|
|
|
16 |
<table class="form-table">
|
17 |
<?php
|
18 |
// Loop over this list of icons.
|
10 |
*/
|
11 |
?>
|
12 |
<div id="aio-favicon-<?php echo $this->identifier ?>-settings" class="postbox">
|
|
|
|
|
13 |
<div class="inside">
|
14 |
+
<h3 id="<?php echo $this->identifier ?>-settings"><?php echo $this->translatedIdentifier; echo " "; _e('Settings', AIOFAVICON_TEXTDOMAIN); ?></h3>
|
15 |
<table class="form-table">
|
16 |
<?php
|
17 |
// Loop over this list of icons.
|
includes/settings-page/sp-plugin-meta-settings.php
CHANGED
@@ -10,9 +10,8 @@
|
|
10 |
*/
|
11 |
?>
|
12 |
<div id="aio-favicon-meta-settings" class="postbox">
|
13 |
-
<h3 id="meta-settings"><?php _e('Settings', AIOFAVICON_TEXTDOMAIN); ?></h3>
|
14 |
-
|
15 |
<div class="inside">
|
|
|
16 |
<table class="form-table">
|
17 |
<tr>
|
18 |
<th scope="row">
|
10 |
*/
|
11 |
?>
|
12 |
<div id="aio-favicon-meta-settings" class="postbox">
|
|
|
|
|
13 |
<div class="inside">
|
14 |
+
<h3 id="meta-settings"><?php _e('Settings', AIOFAVICON_TEXTDOMAIN); ?></h3>
|
15 |
<table class="form-table">
|
16 |
<tr>
|
17 |
<th scope="row">
|
includes/settings-page/sp-tipps-box.php
CHANGED
@@ -11,9 +11,8 @@
|
|
11 |
?>
|
12 |
<div id="poststuff">
|
13 |
<div id="aio-favicon-tips" class="postbox">
|
14 |
-
<h3 id="tips"><?php _e('Tips', AIOFAVICON_TEXTDOMAIN) ?></h3>
|
15 |
-
|
16 |
<div class="inside">
|
|
|
17 |
<table class="form-table">
|
18 |
<tr>
|
19 |
<th scope="row">
|
11 |
?>
|
12 |
<div id="poststuff">
|
13 |
<div id="aio-favicon-tips" class="postbox">
|
|
|
|
|
14 |
<div class="inside">
|
15 |
+
<h3 id="tips"><?php _e('Tips', AIOFAVICON_TEXTDOMAIN) ?></h3>
|
16 |
<table class="form-table">
|
17 |
<tr>
|
18 |
<th scope="row">
|
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: techotronic
|
|
3 |
Tags: theme, favicon, admin, blog, wordpress, image, images, graphic, graphics, icon, iphone, multisite
|
4 |
Requires at least: 2.8
|
5 |
Tested up to: 4.6.1
|
6 |
-
Stable tag: 4.
|
7 |
|
8 |
Easily add a Favicon to your site and the WordPress admin pages. Complete with upload functionality. Supports all three Favicon types (ico,png,gif).
|
9 |
|
@@ -17,8 +17,6 @@ You can either use favicons you already uploaded or use the builtin upload mecha
|
|
17 |
All three favicon types are supported - .ico, .png and .gif (may be animated)
|
18 |
Also, Apple Touch Icons are supported.
|
19 |
|
20 |
-
See [plugin page](http://www.techotronic.de/plugins/all-in-one-favicon/) for more information, a "first steps" guide and screenshots.
|
21 |
-
|
22 |
**Localization**
|
23 |
|
24 |
* Bahasa Indonesia (`id_ID`) by [EKO](http://movableid.com/)
|
@@ -95,6 +93,10 @@ Go to the settings page and and upload your Favicon(s) or add the path/URL to al
|
|
95 |
|
96 |
== Changelog ==
|
97 |
|
|
|
|
|
|
|
|
|
98 |
= 4.4 (2016-10-26) =
|
99 |
* BUGFIX: Fix undefined index notices.
|
100 |
* BUGFIX: Use __construct() for PHP7 compatibility.
|
3 |
Tags: theme, favicon, admin, blog, wordpress, image, images, graphic, graphics, icon, iphone, multisite
|
4 |
Requires at least: 2.8
|
5 |
Tested up to: 4.6.1
|
6 |
+
Stable tag: 4.5
|
7 |
|
8 |
Easily add a Favicon to your site and the WordPress admin pages. Complete with upload functionality. Supports all three Favicon types (ico,png,gif).
|
9 |
|
17 |
All three favicon types are supported - .ico, .png and .gif (may be animated)
|
18 |
Also, Apple Touch Icons are supported.
|
19 |
|
|
|
|
|
20 |
**Localization**
|
21 |
|
22 |
* Bahasa Indonesia (`id_ID`) by [EKO](http://movableid.com/)
|
93 |
|
94 |
== Changelog ==
|
95 |
|
96 |
+
= 4.5 (2016-11-06) =
|
97 |
+
* Some style tweaks to the settings page.
|
98 |
+
* Fix unexpected output on plugin activation.
|
99 |
+
|
100 |
= 4.4 (2016-10-26) =
|
101 |
* BUGFIX: Fix undefined index notices.
|
102 |
* BUGFIX: Use __construct() for PHP7 compatibility.
|