Making WordPress.org

Changeset 708


Ignore:
Timestamp:
06/17/2014 10:46:38 PM (11 years ago)
Author:
iandunn
Message:

WordCamp Post Types: Add variable documentation.

This is helpful for IDEs that support jumping to function declarations.

Location:
sites/trunk/wordcamp.org/public_html/wp-content/plugins/wc-post-types
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • sites/trunk/wordcamp.org/public_html/wp-content/plugins/wc-post-types/inc/widgets.php

    r2 r708  
    2626
    2727    function widget( $args, $instance ) {
     28        /** @var $wcpt_plugin WordCamp_Post_Types_Plugin */
    2829        global $wcpt_plugin;
    2930
     
    125126
    126127    function widget( $args, $instance ) {
     128        /** @var $wcpt_plugin WordCamp_Post_Types_Plugin */
    127129        global $wcpt_plugin;
    128130
     
    230232
    231233    function widget( $args, $instance ) {
     234        /** @var $wcpt_plugin WordCamp_Post_Types_Plugin */
    232235        global $wcpt_plugin;
    233236
     
    339342
    340343    function widget( $args, $instance ) {
     344        /** @var $wcpt_plugin WordCamp_Post_Types_Plugin */
    341345        global $wcpt_plugin;
    342346
  • sites/trunk/wordcamp.org/public_html/wp-content/plugins/wc-post-types/wc-post-types.php

    r697 r708  
    159159    /**
    160160     * Runs during pre_get_posts in admin.
     161     *
     162     * @param WP_Query $query
    161163     */
    162164    function admin_pre_get_posts( $query ) {
Note: See TracChangeset for help on using the changeset viewer.