Plugin Directory

Changeset 926523


Ignore:
Timestamp:
06/04/2014 03:25:31 PM (12 years ago)
Author:
skustes
Message:

This plug-in is no longer supported by the developer.

Location:
where-im-going/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • where-im-going/trunk/readme.txt

    r722137 r926523  
    1111This plug-in allows you to input your travel destinations and the dates you'll be there, then easily output those dates to your readers.
    1212
     13THIS PLUG-IN IS NO LONGER SUPPORTED BY THE DEVELOPER.
     14
    1315== Description ==
    1416
    1517This 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
     19THIS PLUG-IN IS NO LONGER SUPPORTED BY THE DEVELOPER.
    1620
    1721== Installation ==
  • where-im-going/trunk/where-im-going.php

    r722137 r926523  
    22/*
    33Plugin Name: Where I'm Going
    4 Plugin URI: http://www.nuttymango.com/where-im-going/
     4Plugin URI: http://www.realfooduniversity.com/
    55Description: 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.
    66Version: 1.1
    77Author: Scott Kustes
    8 Author URI: http://www.nuttymango.com/
     8Author URI: http://www.realfooduniversity.com/
    99License: GPL2
     10THIS PLUG-IN IS NO LONGER SUPPORTED BY THE DEVELOPER
    1011*/
    1112
     
    8586    // Get the SQL for creating the database tables
    8687    $ary_delete_table_sql = wig_delete_database_tables();
    87    
     88
    8889    // Loop the array, deleting tables
    8990    foreach ( $ary_delete_table_sql AS $table_sql ) {
     
    139140    $screen = get_current_screen();
    140141
    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 ) ) {
    142143        // 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' );
    144145        wp_enqueue_style( 'wig-styles' );
    145146
    146147        // 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' );
    148149        wp_enqueue_style( 'anytime-styles' );
    149150    }
     
    170171
    171172            // 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__ );
    173174            wp_enqueue_script( 'wig-ajax' );
    174175
     
    182183    if ( $screen->id == $wig_inst ) {
    183184        // 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__ );
    185186        wp_enqueue_script( 'wig-inst' );
    186187    }
     
    205206
    206207
    207 /* Function to initialize Admin 
     208/* Function to initialize Admin
    208209------------------------------ */
    209210function wig_admin_init() {
Note: See TracChangeset for help on using the changeset viewer.