diff --git a/includes/data.php b/includes/data.php index 820cafc75a..ea2f1d6b30 100644 --- a/includes/data.php +++ b/includes/data.php @@ -2646,7 +2646,7 @@ function pods_is_falsey( $value ) { /** * Filter out the nulls from the array of data. * - * @since TBD + * @since 3.2.7 * * @param array $data The array of data to filter. * @@ -2664,7 +2664,7 @@ static function( $value ) { /** * Filter out the nulls and empty strings from the array of data. * - * @since TBD + * @since 3.2.7 * * @param array $data The array of data to filter. * diff --git a/includes/general.php b/includes/general.php index 68c8dcc817..34856f6b83 100644 --- a/includes/general.php +++ b/includes/general.php @@ -1513,7 +1513,7 @@ function pods_wrap_html( $html, $attributes = [] ) { /** * Detect the shortcode context from the shortcode attributes. * - * @since TBD + * @since 3.2.7 * * @param array $attributes The list of shortcode attributes. * @@ -1555,7 +1555,7 @@ function pods_shortcode_detect_context( array $attributes ) : ?string { /** * Get the query var affix to use in shortcodes. * - * @since TBD + * @since 3.2.7 * * @param array $attributes The list of shortcode attributes. * @@ -5076,7 +5076,7 @@ function pods_container_register_service_provider( $provider_class ) { /** * Maybe log data to the Pods debug log. * - * @since TBD + * @since 3.2.7 * * @param mixed $debug The debug data to track. * @param string $context The context where the debug came from. @@ -5093,7 +5093,7 @@ function pods_debug_log_data( $debug, string $context, string $function, int $li /** * Log data to the Pods debug log. * - * @since TBD + * @since 3.2.7 * * @param mixed $debug The debug data to track. * @param string $context The context where the debug came from. @@ -5106,7 +5106,7 @@ function pods_debug_log_data( $debug, string $context, string $function, int $li /** * Determine whether Pods debug logging is enabled. * - * @since TBD + * @since 3.2.7 * * @return bool Whether Pods debug logging is enabled. */ @@ -5118,7 +5118,7 @@ function pods_is_debug_logging_enabled(): bool { /** * Allow filtering whether debug logging is enabled. * - * @since TBD + * @since 3.2.7 * * @param bool $is_debug_logging_enabled Whether debug logging is enabled. */ diff --git a/src/Pods/Blocks/Types/Related_Item_List.php b/src/Pods/Blocks/Types/Related_Item_List.php index 0cecae5d83..93ca420ee2 100644 --- a/src/Pods/Blocks/Types/Related_Item_List.php +++ b/src/Pods/Blocks/Types/Related_Item_List.php @@ -7,14 +7,14 @@ /** * Item List block functionality class. * - * @since TBD + * @since 3.2.7 */ class Related_Item_List extends Base { /** * Which is the name/slug of this block * - * @since TBD + * @since 3.2.7 * * @return string */ @@ -25,7 +25,7 @@ public function slug() { /** * Get block configuration to register with Pods. * - * @since TBD + * @since 3.2.7 * * @return array Block configuration. */ @@ -55,7 +55,7 @@ public function block() { /** * Get list of Field configurations to register with Pods for the block. * - * @since TBD + * @since 3.2.7 * * @return array List of Field configurations. */ @@ -82,7 +82,7 @@ public function fields() { /** * Allow filtering of the default cache mode used for the Pods shortcode. * - * @since TBD + * @since 3.2.7 * * @param string $default_cache_mode Default cache mode. */ @@ -260,7 +260,7 @@ public function fields() { /** * Since we are dealing with a Dynamic type of Block we need a PHP method to render it. * - * @since TBD + * @since 3.2.7 * * @param array $attributes The block attributes. * @param string $content The block default content. diff --git a/src/Pods/Integration.php b/src/Pods/Integration.php index 828f400aaf..f9eb1bfb7a 100644 --- a/src/Pods/Integration.php +++ b/src/Pods/Integration.php @@ -72,7 +72,7 @@ public function hook() { /** * Do any post-hook related functionality. * - * @since TBD + * @since 3.2.7 */ public function post_hook() {} @@ -98,7 +98,7 @@ public function unhook() { /** * Do any post-unhook related functionality. * - * @since TBD + * @since 3.2.7 */ public function post_unhook() {} diff --git a/src/Pods/Integrations/Query_Monitor.php b/src/Pods/Integrations/Query_Monitor.php index 8fd7239adc..97c047dfcb 100644 --- a/src/Pods/Integrations/Query_Monitor.php +++ b/src/Pods/Integrations/Query_Monitor.php @@ -10,7 +10,7 @@ /** * Class Query_Monitor * - * @since TBD + * @since 3.2.7 */ class Query_Monitor extends Integration { @@ -46,7 +46,7 @@ public function post_hook() { /** * Handle enqueuing assets. * - * @since TBD + * @since 3.2.7 */ public static function enqueue_assets(): void { wp_register_style( 'pods-query-monitor', PODS_URL . 'ui/styles/dist/pods-query-monitor.css', [ 'query-monitor' ], PODS_VERSION ); @@ -64,7 +64,7 @@ class_exists( 'QM_Activation' ) /** * Register the custom Pods outputters. * - * @since TBD + * @since 3.2.7 * * @param array $outputters The array of outputter instances. * @@ -80,7 +80,7 @@ public static function register_outputters( array $outputters ): array { /** * Add Pods conditional functions to Query Monitor. * - * @since TBD + * @since 3.2.7 * * @param array $conditionals The conditional functions for Query Monitor. * diff --git a/src/Pods/Integrations/Query_Monitor/Collectors/Constants.php b/src/Pods/Integrations/Query_Monitor/Collectors/Constants.php index 1a3d2e715d..ec6059769d 100644 --- a/src/Pods/Integrations/Query_Monitor/Collectors/Constants.php +++ b/src/Pods/Integrations/Query_Monitor/Collectors/Constants.php @@ -12,7 +12,7 @@ /** * Class Constants * - * @since TBD + * @since 3.2.7 */ class Constants extends QM_DataCollector { diff --git a/src/Pods/Integrations/Query_Monitor/Collectors/Debug.php b/src/Pods/Integrations/Query_Monitor/Collectors/Debug.php index 152f5611e8..f1aa4efb45 100644 --- a/src/Pods/Integrations/Query_Monitor/Collectors/Debug.php +++ b/src/Pods/Integrations/Query_Monitor/Collectors/Debug.php @@ -13,7 +13,7 @@ /** * Class Debug * - * @since TBD + * @since 3.2.7 */ class Debug extends QM_DataCollector { @@ -22,7 +22,7 @@ class Debug extends QM_DataCollector { /** * The data to be tracked. * - * @since TBD + * @since 3.2.7 * * @var array */ @@ -35,7 +35,7 @@ public function process() { /** * Track debug data. * - * @since TBD + * @since 3.2.7 * * @param mixed $debug The debug data to track. * @param string $context The context where the debug came from. @@ -58,7 +58,7 @@ public static function track_debug_data( $debug, string $context, string $functi /** * Get all of the debug data tracked. * - * @since TBD + * @since 3.2.7 * * @return array All of the debug data tracked. */ @@ -69,7 +69,7 @@ public static function get_debug_data(): array { /** * Reset all of the debug data tracked. * - * @since TBD + * @since 3.2.7 */ public static function reset_debug_data(): void { self::$custom_data = []; diff --git a/src/Pods/Integrations/Query_Monitor/Outputters/Constants.php b/src/Pods/Integrations/Query_Monitor/Outputters/Constants.php index 26257f3c7b..a30189d8dc 100644 --- a/src/Pods/Integrations/Query_Monitor/Outputters/Constants.php +++ b/src/Pods/Integrations/Query_Monitor/Outputters/Constants.php @@ -13,7 +13,7 @@ /** * Class Constants * - * @since TBD + * @since 3.2.7 */ class Constants extends QM_Output_Html { diff --git a/src/Pods/Integrations/Query_Monitor/Outputters/Debug.php b/src/Pods/Integrations/Query_Monitor/Outputters/Debug.php index a30d38c983..28002ca6ca 100644 --- a/src/Pods/Integrations/Query_Monitor/Outputters/Debug.php +++ b/src/Pods/Integrations/Query_Monitor/Outputters/Debug.php @@ -14,7 +14,7 @@ /** * Class Debug * - * @since TBD + * @since 3.2.7 */ class Debug extends QM_Output_Html { @@ -214,7 +214,7 @@ public function output(): void { /** * Register the panel menu for this outputter. * - * @since TBD + * @since 3.2.7 * * @param array $menus The panel menus. *