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