Changeset 926523
- Timestamp:
- 06/04/2014 03:25:31 PM (12 years ago)
- Location:
- where-im-going/trunk
- Files:
-
- 2 edited
-
readme.txt (modified) (1 diff)
-
where-im-going.php (modified) (6 diffs)
Legend:
- Unmodified
- Added
- Removed
-
where-im-going/trunk/readme.txt
r722137 r926523 11 11 This plug-in allows you to input your travel destinations and the dates you'll be there, then easily output those dates to your readers. 12 12 13 THIS PLUG-IN IS NO LONGER SUPPORTED BY THE DEVELOPER. 14 13 15 == Description == 14 16 15 17 This plug-in allows you to input your travel destinations and the dates you'll be there, then easily output those dates to your readers. Destinations can be linked to Wordpress posts and pages to direct your readers to your content. Output is fully customizable to show destinations and dates in any format. 18 19 THIS PLUG-IN IS NO LONGER SUPPORTED BY THE DEVELOPER. 16 20 17 21 == Installation == -
where-im-going/trunk/where-im-going.php
r722137 r926523 2 2 /* 3 3 Plugin Name: Where I'm Going 4 Plugin URI: http://www. nuttymango.com/where-im-going/4 Plugin URI: http://www.realfooduniversity.com/ 5 5 Description: Where are you now? Where are you going? Where have you been? Keep your readers up to date on your current, past, and future travels. 6 6 Version: 1.1 7 7 Author: Scott Kustes 8 Author URI: http://www. nuttymango.com/8 Author URI: http://www.realfooduniversity.com/ 9 9 License: GPL2 10 THIS PLUG-IN IS NO LONGER SUPPORTED BY THE DEVELOPER 10 11 */ 11 12 … … 85 86 // Get the SQL for creating the database tables 86 87 $ary_delete_table_sql = wig_delete_database_tables(); 87 88 88 89 // Loop the array, deleting tables 89 90 foreach ( $ary_delete_table_sql AS $table_sql ) { … … 139 140 $screen = get_current_screen(); 140 141 141 if ( ( $screen->id == $wig_main ) || ( $screen->id == $wig_settings ) || ( $screen->id == $wig_inst ) ) { 142 if ( ( $screen->id == $wig_main ) || ( $screen->id == $wig_settings ) || ( $screen->id == $wig_inst ) ) { 142 143 // Admin styles for Destination Manager 143 wp_register_style( 'wig-styles', WIG_PLUGIN_URL . 'css/wig_style.css' , __FILE__ , '2013403' , 'all' ); 144 wp_register_style( 'wig-styles', WIG_PLUGIN_URL . 'css/wig_style.css' , __FILE__ , '2013403' , 'all' ); 144 145 wp_enqueue_style( 'wig-styles' ); 145 146 146 147 // Styles for Date Picker 147 wp_register_style( 'anytime-styles', WIG_PLUGIN_URL . 'anytime/anytime.css' , __FILE__ , '2013403' , 'all' ); 148 wp_register_style( 'anytime-styles', WIG_PLUGIN_URL . 'anytime/anytime.css' , __FILE__ , '2013403' , 'all' ); 148 149 wp_enqueue_style( 'anytime-styles' ); 149 150 } … … 170 171 171 172 // AJAX for WIG 172 wp_register_script( 'wig-ajax', WIG_PLUGIN_URL . 'js/wig_jquery_ajax.js' , __FILE__ ); 173 wp_register_script( 'wig-ajax', WIG_PLUGIN_URL . 'js/wig_jquery_ajax.js' , __FILE__ ); 173 174 wp_enqueue_script( 'wig-ajax' ); 174 175 … … 182 183 if ( $screen->id == $wig_inst ) { 183 184 // Javascript for Instructions page 184 wp_register_script( 'wig-inst', WIG_PLUGIN_URL . 'js/instructions.js' , __FILE__ ); 185 wp_register_script( 'wig-inst', WIG_PLUGIN_URL . 'js/instructions.js' , __FILE__ ); 185 186 wp_enqueue_script( 'wig-inst' ); 186 187 } … … 205 206 206 207 207 /* Function to initialize Admin 208 /* Function to initialize Admin 208 209 ------------------------------ */ 209 210 function wig_admin_init() {
Note: See TracChangeset
for help on using the changeset viewer.