Changeset 1818738
- Timestamp:
- 02/09/2018 05:41:41 AM (8 years ago)
- Location:
- wp-auto-update-plugins/trunk
- Files:
-
- 1 added
- 1 edited
-
index.php (added)
-
wp-auto-update-plugins.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-auto-update-plugins/trunk/wp-auto-update-plugins.php
r1802847 r1818738 4 4 * Plugin URI: https://wordpress.org/plugins/wp-auto-update-plugins/ 5 5 * Description: Automatically update your wordpress plugin by activating this plugin, no setup required. 6 * Version: 1.0 7 * Author: Hawp Media LLC6 * Version: 1.0.1 7 * Author: Hawp Media 8 8 * Author URI: https://hawpmedia.com 9 * License: GNU General Public License v2 10 * License URI: http://www.gnu.org/licenses/gpl-2.0.html 9 * License: GPLv2 or later 11 10 * Text Domain: hawp-wp-aup 12 11 */ 13 12 14 13 /** 15 * Exit if accessed directly 14 * Exit if accessed directly. 16 15 */ 17 16 if (! defined('ABSPATH')) exit; 18 17 19 18 /** 20 * Load Textdomain 19 * Load Textdomain. 21 20 */ 22 21 function hawp_wp_aup_load_textdomain(){ … … 26 25 27 26 /** 28 * Add auto update plugins functionality using oop27 * Add auto update plugins functionality. 29 28 */ 30 class hawp_ wp_auto_update_plugins{29 class hawp_auto_plugin_updater { 31 30 public function __construct(){ 32 31 add_filter('auto_update_plugin', '__return_true'); 33 32 } 34 33 } 35 $plugin_hawp_ wp_auto_update_plugins = new hawp_wp_auto_update_plugins();34 $plugin_hawp_auto_plugin_updater = new hawp_auto_plugin_updater();
Note: See TracChangeset
for help on using the changeset viewer.