Plugin Directory

Changeset 1848669


Ignore:
Timestamp:
03/28/2018 04:17:26 PM (7 years ago)
Author:
ChrisMKindred
Message:

Deploy version 2.5.2

Location:
usgs-stream-flow-data
Files:
36 added
14 deleted
3 edited

Legend:

Unmodified
Added
Removed
  • usgs-stream-flow-data/trunk/kwcusgs.php

    r1847453 r1848669  
    11<?php
    22/**
    3  *
     3 * A plugin for calling USGS Stream Flow Data Shortcodes
    44 *
    55 * @package   USGS Steam Flow Data
     
    2727}
    2828
    29 /*----------------------------------------------------------------------------*
    30  * Public-Facing Functionality
    31  *----------------------------------------------------------------------------*/
    32 
    33 require_once plugin_dir_path( __FILE__ ) . 'public/class-kwcusgs.php';
     29require_once plugin_dir_path( __FILE__ ) . 'public/class-kwc-usgs.php';
    3430
    3531/*
     
    4339add_filter( 'widget_text', 'do_shortcode' );
    4440
    45 /*----------------------------------------------------------------------------*
    46  * Dashboard and Administrative Functionality
    47  *----------------------------------------------------------------------------*/
    48 
    4941/*
    5042 * The code below is intended to to give the lightest footprint possible.
     
    5244if ( is_admin() ) {
    5345
    54     require_once plugin_dir_path( __FILE__ ) . 'admin/class-kwcusgs-admin.php';
     46    require_once plugin_dir_path( __FILE__ ) . 'admin/class-kwc-usgs-admin.php';
    5547    add_action( 'plugins_loaded', array( 'kwc_usgs_admin', 'get_instance' ) );
    5648
  • usgs-stream-flow-data/trunk/public/views/public.php

    r1622006 r1848669  
    11<?php
    2 /**
     2/**
     3 * Public facing view for the plugin
     4 *
    35 * @package   USGS Steam Flow Data
    46 * @author    Chris Kindred <[email protected]>
     
    79 * @copyright 2015 Kindred Web Consulting
    810 */
     11
    912?>
    1013
  • usgs-stream-flow-data/trunk/uninstall.php

    r1622006 r1848669  
    1010 */
    1111
    12 // If uninstall not called from WordPress, then exit
     12// If uninstall not called from WordPress, then exit.
    1313if ( ! defined( 'WP_UNINSTALL_PLUGIN' ) ) {
    1414    exit;
Note: See TracChangeset for help on using the changeset viewer.