Changeset 7361 for trunk/src/includes/admin/tools/converter.php
- Timestamp:
- 11/16/2025 11:04:14 PM (3 months ago)
- File:
-
- 1 edited
-
trunk/src/includes/admin/tools/converter.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/includes/admin/tools/converter.php
r7046 r7361 51 51 } 52 52 53 // Filter & return 53 /** 54 * Filters the array of available converters. 55 * 56 * @since 2.6.0 bbPress (r6447) 57 * 58 * @param array $files Array of available converters with names as keys and file paths as values. 59 */ 54 60 return (array) apply_filters( 'bbp_get_converters', $files ); 55 61 } … … 96 102 } 97 103 98 // Filter & return 104 /** 105 * Filters the newly created converter object. 106 * 107 * @since 2.0.0 108 * 109 * @param mixed $converter The converter object if it exists, null otherwise. 110 * @param string $platform Name of the platform class used for conversion. 111 */ 99 112 return apply_filters( 'bbp_new_converter', $converter, $platform ); 100 113 }
Note: See TracChangeset
for help on using the changeset viewer.