Making WordPress.org


Ignore:
Timestamp:
08/25/2022 06:03:46 AM (2 years ago)
Author:
dd32
Message:

Support Forums: Define the properties on the Plugin class where the various support forum components will be loaded into.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sites/trunk/wordpress.org/public_html/wp-content/plugins/support-forums/inc/class-plugin.php

    r12000 r12029  
    2121     */
    2222    private static $db_version = 5636;
     23
     24    // Define the properties for all the Support Forum components.
     25    public $users                = false;
     26    public $user_notes           = false;
     27    public $moderators           = false;
     28    public $hooks                = false;
     29    public $report_topic         = false;
     30    public $nsfw_handler         = false;
     31    public $stats                = false;
     32    public $emails               = false;
     33    public $audit_log            = false;
     34    public $dropin               = false;
     35    public $support_compat       = false;
     36    public $performance          = false;
     37    public $themes               = false;
     38    public $plugins              = false;
     39    public $plugin_subscriptions = false; // Defined via Support_Compat
     40    public $theme_subscriptions  = false; // Defined via Support_Compat
    2341
    2442    /**
Note: See TracChangeset for help on using the changeset viewer.