Shortcode_Abstract::get_validate_arguments_map()
{@inheritDoc}
Source
File: src/Tribe/Views/V2/Shortcodes/Shortcode_Abstract.php
public function get_validate_arguments_map() {
/**
* Applies a filter to instance arguments validation callbacks.
*
* @since 4.7.5
*
* @param array $validate_arguments_map Current set of callbacks for arguments.
* @param static $instance Which instance of shortcode we are dealing with.
*/
$validate_arguments_map = apply_filters( 'tribe_events_pro_shortcode_validate_arguments_map', $this->validate_arguments_map, $this );
$registration_slug = $this->get_registration_slug();
/**
* Applies a filter to instance arguments validation callbacks based on the registration slug of the shortcode.
*
* @since 4.7.5
*
* @param array $validate_arguments_map Current set of callbacks for arguments.
* @param static $instance Which instance of shortcode we are dealing with.
*/
$validate_arguments_map = apply_filters( "tribe_events_pro_shortcode_{$registration_slug}_validate_arguments_map", $validate_arguments_map, $this );
return $validate_arguments_map;
}