Changeset 11562
- Timestamp:
- 02/16/2022 05:04:32 AM (3 years ago)
- Location:
- sites/trunk/wordpress.org/public_html/wp-content/plugins/support-forums
- Files:
-
- 1 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/plugins/support-forums/inc/class-plugin.php
r11533 r11562 45 45 $this->nsfw_handler = new NSFW_Handler; 46 46 $this->stats = new Stats; 47 $this->emails = new Emails; 47 48 48 49 // These modifications are specific to https://wordpress.org/support/ -
sites/trunk/wordpress.org/public_html/wp-content/plugins/support-forums/inc/class-stats.php
r11533 r11562 5 5 * 6 6 * These are very ad-hoc and added on an as-needed basis. 7 * 8 * No user-specific detail is stored, only that a `key: value` action occurred `x` times. 7 9 */ 8 10 class Stats { -
sites/trunk/wordpress.org/public_html/wp-content/plugins/support-forums/support-forums.php
r11533 r11562 28 28 include( dirname( __FILE__ ) . '/inc/class-nsfw-handler.php' ); 29 29 include( dirname( __FILE__ ) . '/inc/class-stats.php' ); 30 include( dirname( __FILE__ ) . '/inc/class-emails.php' ); 30 31 31 32 // Compat-only includes.
Note: See TracChangeset
for help on using the changeset viewer.