Version Description
Download this release
Release Info
Developer | Papin |
Plugin | Companion Auto Update |
Version | 2.9.6 |
Comparing to | |
See all releases |
Code changes from version 2.9.5 to 2.9.6
- companion-auto-update.php +12 -6
- readme.txt +6 -3
companion-auto-update.php
CHANGED
@@ -1,10 +1,10 @@
|
|
1 |
<?php
|
2 |
/*
|
3 |
* Plugin Name: Companion Auto Update
|
4 |
-
* Plugin URI: http://codeermeneer.nl/
|
5 |
* Description: This plugin auto updates all plugins, all themes and the wordpress core.
|
6 |
-
* Version: 2.9.
|
7 |
-
* Author:
|
8 |
* Author URI: http://codeermeneer.nl/
|
9 |
* Contributors: papin
|
10 |
* License: GPLv2 or later
|
@@ -147,7 +147,13 @@ function cau_frontend() { ?>
|
|
147 |
|
148 |
<div class='wrap'>
|
149 |
|
150 |
-
<h1><?php _e('Auto Updater', 'companion-auto-update'); ?></h1>
|
|
|
|
|
|
|
|
|
|
|
|
|
151 |
|
152 |
<h2 class="nav-tab-wrapper wp-clearfix">
|
153 |
<a href="tools.php?page=cau-settings" class="nav-tab <?php active_tab(''); ?>"><?php _e('Dashboard', 'companion-auto-update'); ?></a>
|
@@ -280,7 +286,7 @@ function cau_frontend() { ?>
|
|
280 |
<td>
|
281 |
<p>
|
282 |
<label for="cau_email"><?php _e('To', 'companion-auto-update');?>:</label>
|
283 |
-
<input type="text" name="cau_email" id="cau_email" class="regular-text" placeholder="<?php echo get_option('admin_email'); ?>" value="<?php echo $toemail; ?>" />
|
284 |
</p>
|
285 |
|
286 |
<p class="description"><?php _e('Seperate email addresses using commas.', 'companion-auto-update');?></p>
|
@@ -325,7 +331,7 @@ function schedule() {
|
|
325 |
$plugin_schedule = wp_get_schedule( 'wp_update_plugins' );
|
326 |
$theme_schedule = wp_get_schedule( 'wp_update_themes' );
|
327 |
$core_schedule = wp_get_schedule( 'wp_version_check' );
|
328 |
-
$mail_sc
|
329 |
|
330 |
if( isset( $_POST['submit'] ) ) {
|
331 |
|
1 |
<?php
|
2 |
/*
|
3 |
* Plugin Name: Companion Auto Update
|
4 |
+
* Plugin URI: http://codeermeneer.nl/portfolio/companion-auto-update/
|
5 |
* Description: This plugin auto updates all plugins, all themes and the wordpress core.
|
6 |
+
* Version: 2.9.6
|
7 |
+
* Author: Papin Schipper
|
8 |
* Author URI: http://codeermeneer.nl/
|
9 |
* Contributors: papin
|
10 |
* License: GPLv2 or later
|
147 |
|
148 |
<div class='wrap'>
|
149 |
|
150 |
+
<h1 class="wp-heading-inline"><?php _e('Auto Updater', 'companion-auto-update'); ?></h1>
|
151 |
+
|
152 |
+
<a href="http://codeermeneer.nl/cau_poll/" target="_blank" class="page-title-action"><?php _e('Give feedback', 'companion-auto-update'); ?></a>
|
153 |
+
<a href="https://translate.wordpress.org/projects/wp-plugins/companion-auto-update/" target="_blank" class="page-title-action"><?php _e('Help us translate', 'companion-auto-update'); ?></a>
|
154 |
+
<a href="https://www.paypal.me/dakel/1/" target="_blank" class="page-title-action"><?php _e('Donate to help development', 'companion-auto-update'); ?></a>
|
155 |
+
|
156 |
+
<hr class="wp-header-end">
|
157 |
|
158 |
<h2 class="nav-tab-wrapper wp-clearfix">
|
159 |
<a href="tools.php?page=cau-settings" class="nav-tab <?php active_tab(''); ?>"><?php _e('Dashboard', 'companion-auto-update'); ?></a>
|
286 |
<td>
|
287 |
<p>
|
288 |
<label for="cau_email"><?php _e('To', 'companion-auto-update');?>:</label>
|
289 |
+
<input type="text" name="cau_email" id="cau_email" class="regular-text" placeholder="<?php echo get_option('admin_email'); ?>" value="<?php echo esc_html( $toemail ); ?>" />
|
290 |
</p>
|
291 |
|
292 |
<p class="description"><?php _e('Seperate email addresses using commas.', 'companion-auto-update');?></p>
|
331 |
$plugin_schedule = wp_get_schedule( 'wp_update_plugins' );
|
332 |
$theme_schedule = wp_get_schedule( 'wp_update_themes' );
|
333 |
$core_schedule = wp_get_schedule( 'wp_version_check' );
|
334 |
+
$mail_sc = wp_get_schedule( 'cau_set_schedule_mail' );
|
335 |
|
336 |
if( isset( $_POST['submit'] ) ) {
|
337 |
|
readme.txt
CHANGED
@@ -1,10 +1,10 @@
|
|
1 |
=== Companion Auto Update ===
|
2 |
-
Contributors: Papin
|
3 |
Donate link: https://www.paypal.me/dakel/1
|
4 |
Tags: auto, automatic, background, update, updates, updating, automatic updates, automatic background updates, easy update, wordpress update, theme update, plugin update, up-to-date, security, update latest version, update core, update wp, update wp core, major updates, minor updates, update to new version, update core, update plugin, update plugins, update plugins automatically, update theme, plugin, theme, advance, control, mail, notifations, enable
|
5 |
Requires at least: 3.5.0
|
6 |
-
Tested up to: 4.
|
7 |
-
Stable tag: 2.9.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -81,6 +81,9 @@ If you launched your website a few years ago using cPanel it could be the case t
|
|
81 |
|
82 |
== Changelog ==
|
83 |
|
|
|
|
|
|
|
84 |
= 2.9.5 (6/22/2017) =
|
85 |
* Fixed issue where multiple emailaddresses wouldn't work.
|
86 |
|
1 |
=== Companion Auto Update ===
|
2 |
+
Contributors: Papin, qweb
|
3 |
Donate link: https://www.paypal.me/dakel/1
|
4 |
Tags: auto, automatic, background, update, updates, updating, automatic updates, automatic background updates, easy update, wordpress update, theme update, plugin update, up-to-date, security, update latest version, update core, update wp, update wp core, major updates, minor updates, update to new version, update core, update plugin, update plugins, update plugins automatically, update theme, plugin, theme, advance, control, mail, notifations, enable
|
5 |
Requires at least: 3.5.0
|
6 |
+
Tested up to: 4.9
|
7 |
+
Stable tag: 2.9.6
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
81 |
|
82 |
== Changelog ==
|
83 |
|
84 |
+
= 2.6.6 (7/11/2017) =
|
85 |
+
* Added buttons to help development of this plugin.
|
86 |
+
|
87 |
= 2.9.5 (6/22/2017) =
|
88 |
* Fixed issue where multiple emailaddresses wouldn't work.
|
89 |
|