Changeset 1848669
- Timestamp:
- 03/28/2018 04:17:26 PM (7 years ago)
- 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 1 1 <?php 2 2 /** 3 * 3 * A plugin for calling USGS Stream Flow Data Shortcodes 4 4 * 5 5 * @package USGS Steam Flow Data … … 27 27 } 28 28 29 /*----------------------------------------------------------------------------* 30 * Public-Facing Functionality 31 *----------------------------------------------------------------------------*/ 32 33 require_once plugin_dir_path( __FILE__ ) . 'public/class-kwcusgs.php'; 29 require_once plugin_dir_path( __FILE__ ) . 'public/class-kwc-usgs.php'; 34 30 35 31 /* … … 43 39 add_filter( 'widget_text', 'do_shortcode' ); 44 40 45 /*----------------------------------------------------------------------------*46 * Dashboard and Administrative Functionality47 *----------------------------------------------------------------------------*/48 49 41 /* 50 42 * The code below is intended to to give the lightest footprint possible. … … 52 44 if ( is_admin() ) { 53 45 54 require_once plugin_dir_path( __FILE__ ) . 'admin/class-kwc usgs-admin.php';46 require_once plugin_dir_path( __FILE__ ) . 'admin/class-kwc-usgs-admin.php'; 55 47 add_action( 'plugins_loaded', array( 'kwc_usgs_admin', 'get_instance' ) ); 56 48 -
usgs-stream-flow-data/trunk/public/views/public.php
r1622006 r1848669 1 1 <?php 2 /** 2 /** 3 * Public facing view for the plugin 4 * 3 5 * @package USGS Steam Flow Data 4 6 * @author Chris Kindred <[email protected]> … … 7 9 * @copyright 2015 Kindred Web Consulting 8 10 */ 11 9 12 ?> 10 13 -
usgs-stream-flow-data/trunk/uninstall.php
r1622006 r1848669 10 10 */ 11 11 12 // If uninstall not called from WordPress, then exit 12 // If uninstall not called from WordPress, then exit. 13 13 if ( ! defined( 'WP_UNINSTALL_PLUGIN' ) ) { 14 14 exit;
Note: See TracChangeset
for help on using the changeset viewer.