Plugin Directory

Changeset 1896503


Ignore:
Timestamp:
06/21/2018 01:40:44 PM (8 years ago)
Author:
cgalves
Message:

Version 1.3.0 Release

Location:
cga-plugin-helper
Files:
21 added
2 edited

Legend:

Unmodified
Added
Removed
  • cga-plugin-helper/trunk/plugin-helper.php

    r1896368 r1896503  
    22/**
    33 * @package CGA_Plugin_Helper
    4  * @version 1.2.0
     4 * @version 1.3.0
    55 */
    66/*
     
    99Description: This plugin will assist you in the installation of plugins, allowing you to choose from a curated list, manually search for plugins and export any active plugins into a text list.
    1010Author: Carlos Alves
    11 Author URI: https://masto.pt/@carlosalves
    12 Version: 1.2.0
     11Author URI: https://pragmatica.pt/
     12Version: 1.3.0
    1313License: GPLv3
    1414Text Domain: cga-plugin-helper
     
    3535    include_once ( 'cgaph-plugin-search.php' );
    3636    include_once ( 'cgaph-plugin-export.php' );
    37     include_once ( 'cgaph-plugin-main.php' );
    38     add_menu_page( __( 'Plugin Helper', 'cga-plugin-helper' ), __( 'Plugin Helper', 'cga-plugin-helper' ), 'manage_options', 'plugin-installer', 'cgaph_landing_page', 'dashicons-admin-generic', 200  );
     37    include_once ( 'cgaph-install-plugin.php' );
     38    include_once ( 'cgaph-activate-plugin.php' );
     39    include_once ( 'cgaph-upgrade-plugin.php' );
     40    include_once ( 'cgaph-install-done.php' );
     41    add_menu_page( __( 'Plugin Helper', 'cga-plugin-helper' ), __( 'Plugin Helper', 'cga-plugin-helper' ), 'manage_options', 'plugin-helper', 'cgaph_landing_page', 'dashicons-admin-generic', 200  );
    3942    add_submenu_page( __( 'Installer', 'cga-plugin-helper' ), __( 'Installer', 'cga-plugin-helper' ), 'Whatever You Want','manage_options', 'plugin-installer-sub', 'cgaph_plugin_installer' );
    4043    add_submenu_page( __( 'Plugin List', 'cga-plugin-helper' ), __( 'Plugin List', 'cga-plugin-helper' ), 'Whatever You Want','manage_options', 'plugin-selector', 'cgaph_plugin_selector' );
     
    4245    add_submenu_page( __( 'Installer', 'cga-plugin-helper' ), __( 'Installer', 'cga-plugin-helper' ), 'Whatever You Want','manage_options', 'plugin-installer-main', 'cgaph_main' );
    4346    add_submenu_page( __( 'Plugin Export',  'cga-plugin-helper' ), __( 'Plugin Export', 'cga-plugin-helper' ), 'Whatever You Want','manage_options', 'plugin-exporter', 'cgaph_export_plugins' );
     47    add_submenu_page( __( 'Plugin Activation',  'cga-plugin-helper' ), __( 'Plugin Activation', 'cga-plugin-helper' ), 'Whatever You Want','manage_options', 'plugin-activate', 'cgaph_activate_plugins' );
     48    add_submenu_page( __( 'Plugin Upgrade',  'cga-plugin-helper' ), __( 'Plugin Upgrade', 'cga-plugin-helper' ), 'Whatever You Want','manage_options', 'plugin-upgrade', 'cgaph_upgrade_plugins' );
     49    add_submenu_page( __( 'Done',  'cga-plugin-helper' ), __( 'Done', 'cga-plugin-helper' ), 'Whatever You Want','manage_options', 'plugin-done', 'cgaph_install_done' );
    4450}
  • cga-plugin-helper/trunk/readme.txt

    r1894506 r1896503  
    44Requires at least: 4.9
    55Tested up to: 4.9.6
    6 Stable tag: 1.2.0
     6Stable tag: 1.3.0
    77Requires PHP: 7
    88License: GPLv3
     
    4141== Changelog ==
    4242
     43= 1.3.0 =
     44* Added function that will auto-update the installed plugins
     45* Separated most functions into their own files
     46
    4347= 1.2.0 =
    4448* Removed $_SESSIONS dependency. This plugin will no longer conflict with caching
Note: See TracChangeset for help on using the changeset viewer.