Plugin Directory

Changeset 1378271


Ignore:
Timestamp:
03/24/2016 08:51:48 PM (10 years ago)
Author:
MalteseSolutions
Message:

Added the ability of the minimum user level of contributor to add/update stats

Location:
fireems-stats/trunk
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • fireems-stats/trunk/fireems-stats.php

    r1342499 r1378271  
    44Plugin URI: http://www.maltesesolutions.com
    55Description: This plugin will display your Fire/EMS Stats.
    6 Version: 1.2.1
     6Version: 1.2.2
    77Author: Maltese Solutions
    88Author URI: http://www.maltesesolutions.com
  • fireems-stats/trunk/inc/admin.php

    r1342499 r1378271  
    44 *
    55 * @link       http://maltesesolutions.com
    6  * @since      1.2.1
     6 * @since      1.2.2
    77 *
    88 * @package    FireEms Stats
  • fireems-stats/trunk/inc/functions.php

    r1342499 r1378271  
    44 *
    55 * @link       http://maltesesolutions.com
    6  * @since      1.2.1
     6 * @since      1.2.2
    77 *
    88 * @package    FireEms Stats
     
    1212
    1313function fireems_admin_menu() {
    14     add_menu_page( 'Fire/EMS Stats', 'Fire/EMS Stats', 'manage_options', 'fireems-stats', 'fireems_updatepage', plugins_url( './images/truck65.png',__FILE__), 3);
     14    add_menu_page( 'Fire/EMS Stats', 'Fire/EMS Stats', 'edit_posts', 'fireems-stats', 'fireems_updatepage', plugins_url( './images/truck65.png',__FILE__), 3);
    1515    //create submenu items
    16     add_submenu_page( 'fireems-stats', 'View Prior Stats', 'Prior Stats', 'manage_options', 'fireems-prior', fireems_priorpage );
    17         add_submenu_page( 'fireems-stats', 'FAQ\'s', 'FAQs', 'manage_options', 'fireems-faq', fireems_faqpage );
     16    add_submenu_page( 'fireems-stats', 'View Prior Stats', 'Prior Stats', 'edit_pages', 'fireems-prior', fireems_priorpage );
     17        add_submenu_page( 'fireems-stats', 'FAQ\'s', 'FAQs', 'edit_posts', 'fireems-faq', fireems_faqpage );
    1818    add_submenu_page( 'fireems-stats', 'Monthly Stats Options', 'Options', 'manage_options', 'fireems-options', fireems_optionpage );
    1919    add_action('admin_print_styles', 'fireems_admin_css');
  • fireems-stats/trunk/inc/widget.php

    r1342499 r1378271  
    44 *
    55 * @link       http://maltesesolutions.com
    6  * @since      1.2.1
     6 * @since      1.2.2
    77 *
    88 * @package    FireEms Stats
  • fireems-stats/trunk/readme.txt

    r1342499 r1378271  
    44Requires at least: 4.0
    55Tested up to: 4.4
    6 Stable tag: 1.2.1
     6Stable tag: 1.2.2
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    1313
    1414FireEMS Stats (Lite) allows your Fire or EMS Organization to list montly activity on the front page.
     15
    1516Edit your stats manually to keep your visitors and community up to date.
    1617
    17 Live Demo (Pro Version): http://wpdemo.maltesesolutions.com/
     18[Live Demo (Pro Version):](http://wpdemo.maltesesolutions.com).
     19
     20### Like this plugin?
    1821
    1922
    20 = Buy me a cup of coffee =
     23* [Buy Me A Cup of Coffee](https://www.paypal.com/us/cgi-bin/webscr?cmd=_flow&SESSION=8MKMtwWBhYqvrL20fTFjl8lt6KY_uDXqj3Vggpykc7tt8o4LtMhrIGCsfLS&dispatch=5885d80a13c0db1f8e263663d3faee8defcd6970d4fd9d661117ac2649af92bb).
    2124
    22 A cup of coffee from you is really inspiring and helpful to allow me to develop free plugins. If you enjoy using Fire/EMS Stats and find it useful, please consider making a donation to buy me a cup of coffee.
     25* [Rating the plugin](https://wordpress.org/support/view/plugin-reviews/fireems-stats?rate=5#postform).
    2326
    24 Please take just few seconds to rate this plugin and tell the others how it works.
    2527
    2628== Installation ==
     
    4648== Screenshots ==
    4749
    48 Coming soon.
     501. Backend add/update stats.
     51
     522. Widget install.
     53
     543. Frontend widget view.
    4955
    5056== Changelog ==
    5157
    52 = 1.2.2 (2016-02-03) =
     58= 1.2.2 (2016-03-24) =
     59* Added the ability for non-admins to update stats.
     60* User must have the role of contributor or above.
     61
     62= 1.2.1 (2016-02-03) =
    5363* Hopefully averted a XSS scripting error.
    5464* Changed the plugin icon
  • fireems-stats/trunk/uninstall.php

    r1342499 r1378271  
    44 *
    55 * @link       http://maltesesolutions.com
    6  * @since      1.2.1
     6 * @since      1.2.2
    77 *
    88 * @package    FireEms Stats
Note: See TracChangeset for help on using the changeset viewer.