Plugin Directory

Changeset 1818738


Ignore:
Timestamp:
02/09/2018 05:41:41 AM (8 years ago)
Author:
hawpmedia
Message:

Added index.php file, changed class name

Location:
wp-auto-update-plugins/trunk
Files:
1 added
1 edited

Legend:

Unmodified
Added
Removed
  • wp-auto-update-plugins/trunk/wp-auto-update-plugins.php

    r1802847 r1818738  
    44 * Plugin URI:        https://wordpress.org/plugins/wp-auto-update-plugins/
    55 * Description:       Automatically update your wordpress plugin by activating this plugin, no setup required.
    6  * Version:           1.0
    7  * Author:            Hawp Media LLC
     6 * Version:           1.0.1
     7 * Author:            Hawp Media
    88 * 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
    1110 * Text Domain:       hawp-wp-aup
    1211 */
    1312
    1413/**
    15  * Exit if accessed directly
     14 * Exit if accessed directly.
    1615 */
    1716if (! defined('ABSPATH')) exit;
    1817
    1918/**
    20  * Load Textdomain
     19 * Load Textdomain.
    2120 */
    2221function hawp_wp_aup_load_textdomain(){
     
    2625
    2726/**
    28  * Add auto update plugins functionality using oop
     27 * Add auto update plugins functionality.
    2928 */
    30 class hawp_wp_auto_update_plugins {
     29class hawp_auto_plugin_updater {
    3130    public function __construct(){
    3231        add_filter('auto_update_plugin', '__return_true');
    3332    }
    3433}
    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.