Plugin Directory

Changeset 1981644


Ignore:
Timestamp:
11/27/2018 11:40:11 PM (7 years ago)
Author:
benhallbenhall
Message:

Troubleshooting Guides

Location:
wpdevhub-troubleshooting-guides/trunk
Files:
81 added
2 edited

Legend:

Unmodified
Added
Removed
  • wpdevhub-troubleshooting-guides/trunk/index.php

    r1981556 r1981644  
    11<?php
    22/*
    3  * Plugin Name:   WPDevHub Link Manager
    4  * Version:       2.5
    5  * Plugin URI:    https://www.wpdevhub.com/wordpress-plugins/link-manager/
    6  * Description:   Create and Track custom link forwarders with a minimized URL off your own website.
     3 * Plugin Name:   WPDevHub Troubleshooting Guides
     4 * Version:       2.6
     5 * Plugin URI:    https://www.wpdevhub.com/wordpress-plugins/troubleshooting-guides/
     6 * Description:   Create feature rich troubleshooting guides for your website visitors to follow.
    77 * Author:        WPDevHub
    88 * Author URI:    https://www.wpdevhub.com/
    99 */
    1010
    11 define('WPDEVHUB_CONST_DLM_PLUGIN_TITLE', 'WPDevHub Links');
    12 define('WPDEVHUB_CONST_DLM_APP_CODE', 'dlm');
    13 define('WPDEVHUB_CONST_DLM_CLASSES_BROWSER', true);
    14 define('WPDEVHUB_CONST_DLM_CLASSES_VIRTUAL_PAGES', true);
     11define('WPDEVHUB_CONST_DTG_PLUGIN_TITLE', 'WPDevHub Troubleshooting Guides');
     12define('WPDEVHUB_CONST_DTG_APP_CODE', 'dtg');
     13define('WPDEVHUB_CONST_DTG_SLUG', 'wpdevhub-troubleshooting-guides');
    1514
    1615// Standard Setup Steps
     
    1817
    1918// Class Includes
    20 include dirname(__FILE__).'/classes/class.DSCF_DLM_Links_Main.php';
    21 include dirname(__FILE__).'/classes/class.DSCF_DLM_Links_Link.php';
    22 include dirname(__FILE__).'/classes/class.DSCF_DLM_Links_Hit.php';
     19include dirname(__FILE__).'/classes/class.DSCF_DTG_TroubleshootingGuides_Main.php';
     20include dirname(__FILE__).'/classes/class.DSCF_DTG_TroubleshootingGuides_Guide.php';
     21include dirname(__FILE__).'/classes/class.DSCF_DTG_TroubleshootingGuides_GuideShortCodeMetaBox.php';
     22include dirname(__FILE__).'/classes/class.DSCF_DTG_TroubleshootingGuides_Step.php';
     23include dirname(__FILE__).'/classes/class.DSCF_DTG_TroubleshootingGuides_StepMetaBox.php';
    2324
    24 add_action( 'init', array('DSCF_DLM_Links_Main', 'wpActionInit'), 0 );
    25 
    26 $controller = DSCF_DLM_VirtualPages_Controller::getController();
    27 add_action( WPDEVHUB_CONST_DLM_SLUG.'_virtual_pages', function( $controller ) {
    28 
    29     $linkSlugBase = DSCF_DLM_Links_Main::getSlugBase();
    30 
    31     // Plugin Page
    32     $controller->addPage( new DSCF_DLM_VirtualPages_Page( $linkSlugBase.'/%%hash_key%%' ) )
    33         ->setTitle( 'Link Controller' )
    34         ->setTemplate( 'pages/wpdevhub-dlm-vp-link-handler.php' );
    35 
    36 } );
    37 
    38 // Shortcodes
    39 add_shortcode( WPDEVHUB_CONST_DLM_SLUG, array('DSCF_DLM_Links_Main', 'shortcodeHandler') );
    40 
     25// Actions
     26add_action( 'init', array('DSCF_DTG_TroubleshootingGuides_Main', 'wpActionInit'), 0 );
  • wpdevhub-troubleshooting-guides/trunk/readme.txt

    r1981556 r1981644  
    1 === WPDevHub Link Manager ===
     1=== WPDevHub Troubleshooting Guides ===
    22Contributors: benhallbenhall
    3 Donate link: http://www.wpdevhub.com/
    4 Tags: Links Link Management
     3Donate link: https://www.wpdevhub.com/
     4Tags: support forums
    55Requires at least: 3.0.1
    6 Tested up to: 4.9
    7 Stable tag: 2.5
     6Tested up to: 4.8
     7Stable tag: 2.6
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
    1010
    11 Create and Track custom link forwarders with a minimized URL off your own website.
     11Create feature rich troubleshooting guides for your website visitors to follow
    1212
    1313== Description ==
    1414
    15 Create and Track custom link forwarders with a minimized URL off your own website.  Take advantage of short codes, widgets and other features.
     15Create feature rich troubleshooting guides for your website visitors to follow
    1616
    1717== Installation ==
    1818
    19 1. Unzip the contents of `wpdevhub-dlm.zip`
    20 2. Upload the full `wpdevhub-dlm` folder to the `/wp-content/plugins/` directory
     191. Unzip the contents of `wpdevhub-troubleshooting-guides.zip`
     202. Upload the full `wpdevhub-troubleshooting-guides` folder to the `/wp-content/plugins/` directory
    21213. Activate the plugin through the 'Plugins' menu in WordPress
    22 4. Access the WPDevHub Link Manager through the links on the left of WordPress.
    23 5. Add, create and interact with links through the provided admin tools.  Widgets and short codes are also available
     224. Access the Troubleshooting Guides plugin through the links on the left of WordPress administration panel.
    2423
    2524== Screenshots ==
    2625
    27 1. The WPDevHub Link Manager allows you to create an unlimited number of link forwarders that are local to your site.
    28 2. The editor allows you to easily setup and change the directives for your link forwarder.
     261. The WPDevHub Troubleshooting Guides plugin allow you to present step-by-step instructional content in an organized fashion that is easy to read for your users.
     272. The plugin is built directly into the WordPress post editor system as a custom post type.  This allows content to be used as a standalone post.
     283. Basic editor functionality has been extended allowing you to easily add as many troubleshooting steps as needed.
     294. Final content is then provided to readers in an organized fashion that looks natural with standard WordPress designs and templates.
     305. The plugin also uses the built in WordPress taxonomy tools to create custom Guide Categories as desired.
     316. Additional settings are provided to help control and extend the capabilities of the plugin.
    2932
    3033== Frequently Asked Questions ==
     
    3437Visit https://www.wpdevhub.com for any and all support inquiries.
    3538
    36 = How many links can I create? =
    37 
    38 There is no limit to number of links you can create.  Create as many as you are comfortable with.
    39 
    40 = How do I change the base /go/ directive? =
    41 
    42 Visit the settings page in the navigation bar for the plugin.  There you can specify any forwarding directive that you wish.
    43 
    44 = I have a feature suggestion =
    45 
    46 Great! Visit https://www.wpdevhub.com to submit your ideas and feature suggestions.
    4739
    4840== Changelog ==
     
    5547
    5648= 2.0.0 =
    57 * Added support for QR codes
     49* Added support for Virtual Pages
     50* Added settings and controls
    5851
    5952= 2.1.0 =
     
    6255= 2.2.0 =
    6356* Performance optimizations
    64 * Minified URL support
    6557
    6658= 2.3.0 =
    67 * Base URL customization support
    68 * Optimizations
     59* Better styling support
    6960
    7061= 2.4.0 =
    71 * Improvements to hit tracking
     62* Improvements for MU installations
    7263
    7364= 2.5.0 =
    7465* Optimizations and improvements
    7566
     67= 2.6.0 =
     68* Fix URLs for CSS support under SSL
     69
     70
    7671== Upgrade Notice ==
    7772
    78 = 1.0.0 =
     73= 1.0 =
    7974Initial Product Release.
Note: See TracChangeset for help on using the changeset viewer.