Kint
string (49) "tribe_events_views_v2_should_hijack_page_template"
string (17) "tec_is_venue_view"
Tribe__Context (6)
  • Properties (6)
  • Available methods (58)
  • Static class properties (22)
  • protected disable_read_from -> array (0)
    protected override_locations -> array (0)
    protected doing_ajax -> null
    protected doing_cron -> null
    protected request_cache -> array (4)
    is_main_query => boolean true
    post_type => string (7) "product"
    view => string (4) "list"
    single => boolean true
    protected post_state -> TEC\Common\Context\Post_Request_Type (0)
    • Available methods (4)
    • public is_inline_editing_post($post_type): bool Whether the current request is one to quick edit a single post of the specified ...
      /**
      * Whether the current request is one to quick edit a single post of the specified post type or not.
      *
      * @since 5.0.13
      *
      * @param string|array<string> $post_type The post type or post types to check.
      *
      * @return bool Whether the current request is one to quick edit a single post of the specified post type or not.
      */
      
      Defined in <ROOT>/wp-content/plugins/event-tickets/common/src/Common/Context/Post_Request_Type.php:33
      public is_editing_post_list($post_type): bool Whether the current request is one to edit a list of the specified post types or...
      /**
      * Whether the current request is one to edit a list of the specified post types or not.
      *
      * The admin edit screen for a post type is the one that lists all the posts of that typ,
      * it has the URL `/wp-admin/edit.php?post_type=<post_type>`.
      *
      * @since 5.0.13
      *
      * @param string|array<string> $post_type The post type or post types to check.
      *
      * @return bool Whether the current request is one to edit a list of the specified post types or not.
      */
      
      Defined in <ROOT>/wp-content/plugins/event-tickets/common/src/Common/Context/Post_Request_Type.php:59
      public is_new_post($post_type = null): bool Whether we are currently creating a new post, a post of post type(s) or not.
      /**
      * Whether we are currently creating a new post, a post of post type(s) or not.
      *
      * @since 4.7.7
      *
      * @param null $post_type The optional post type to check.
      *
      * @return bool Whether we are currently creating a new post, a post of post type(s) or not.
      */
      
      Defined in <ROOT>/wp-content/plugins/event-tickets/common/src/Common/Context/Post_Request_Type.php:82
      public is_editing_post($post_or_type = null): bool Whether we are currently editing a post(s), post type(s) or not.
      /**
      * Whether we are currently editing a post(s), post type(s) or not.
      *
      * @since 4.7.7
      *
      * @param null|array|string|int $post_or_type A post ID, post type, an array of post types or post IDs, `null`
      *                                            to just make sure we are currently editing a post.
      *
      * @return bool
      */
      
      Defined in <ROOT>/wp-content/plugins/event-tickets/common/src/Common/Context/Post_Request_Type.php:100
  • public __construct(?TEC\Common\Context\Post_Request_Type $post_state = null) Tribe__Context constructor.
    new \Tribe__Context(?TEC\Common\Context\Post_Request_Type $post_state = null)
    /**
    * Tribe__Context constructor.
    *
    * @since 5.0.13
    *
    * @param Post_Request_Type|null $post_state An instance of the post state handler.
    */
    
    Defined in <ROOT>/wp-content/plugins/event-tickets/common/src/Tribe/Context.php:263
    public is_new_post($post_type = null): bool Whether we are currently creating a new post, a post of post type(s) or not. Whether we are currently creating a new post, a post of post type(s) or not.
    $2->is_new_post($post_type = null)
    /**
    * Whether we are currently creating a new post, a post of post type(s) or not.
    *
    * @since 4.7.7
    * @since 5.0.13 Extracted the logic to the `TEC\Common\Context\Post_Request_Type` class.
    *
    * @param null $post_type The optional post type to check.
    *
    * @return bool Whether we are currently creating a new post, a post of post type(s) or not.
    */
    
    Defined in <ROOT>/wp-content/plugins/event-tickets/common/src/Tribe/Context.php:277
    public is_editing_post($post_or_type = null): bool Whether we are currently editing a post(s), post type(s) or not.
    $2->is_editing_post($post_or_type = null)
    /**
    * Whether we are currently editing a post(s), post type(s) or not.
    *
    * @since 4.7.7
    * @since 5.0.13 Extracted the logic to the `TEC\Common\Context\Post_Request_Type` class.
    *
    * @param null|array|string|int $post_or_type A post ID, post type, an array of post types or post IDs, `null`
    *                                            to just make sure we are currently editing a post.
    *
    * @return bool
    */
    
    Defined in <ROOT>/wp-content/plugins/event-tickets/common/src/Tribe/Context.php:292
    public doing_ajax(): boolean Helper function to indicate whether the current execution context is AJAX.
    $2->doing_ajax()
    /**
    * Helper function to indicate whether the current execution context is AJAX.
    *
    * This method exists to allow us test code that behaves differently depending on the execution
    * context.
    *
    * @since 4.7.12
    * @since 4.9.5 Removed the $doing_ajax parameter.
    *
    * @return boolean
    */
    
    Defined in <ROOT>/wp-content/plugins/event-tickets/common/src/Tribe/Context.php:307
    public doing_cron(): bool Whether the context of the current HTTP request is a Cron one or not. Checks whether the context of the current HTTP request is a Cron one or not.
    $2->doing_cron()
    /**
    * Checks whether the context of the current HTTP request is a Cron one or not.
    *
    * @since 4.7.23
    * @since 4.9.5 Removed the $doing_cron parameter.
    *
    * @return bool Whether the context of the current HTTP request is a Cron one or not.
    */
    
    Defined in <ROOT>/wp-content/plugins/event-tickets/common/src/Tribe/Context.php:321
    public get($key, $default = null, $force = false): mixed The value from the first location that can provide it or the default Gets a value reading it from the location(s) defined in the `Tribe__Context::$pr...
    $2->get($key, $default = null, $force = false)
    /**
    * Gets a value reading it from the location(s) defined in the `Tribe__Context::$props
    *
    * @since 4.9.5
    *
    * @param string     $key     The key of the variable to fetch.
    * @param mixed|null $default The default value to return if not found.
    * @param bool $force Whether to force the re-fetch of the value from the context or
    *                    not; defaults to `false`.
    *
    * @return mixed The value from the first location that can provide it or the default
    *               value if not found.
    */
    
    Defined in <ROOT>/wp-content/plugins/event-tickets/common/src/Tribe/Context.php:340
    public alter(array $values): \Tribe__Context A clone, with modified, values, of the context the method was called on. Alters the context.
    $2->alter(array $values)
    /**
    * Alters the context.
    *
    * Due to its immutable nature setting values on the context will NOT modify the
    * context but return a modified clone.
    * If you need to modify the global context update the location(s) it should read from
    * and call the `refresh` method.
    * Example: `$widget_context = tribe_context()->alter( $widget_args );`.
    *
    * @since 4.9.5
    *
    * @param array $values An associative array of key-value pairs to modify the context.
    *
    * @return \Tribe__Context A clone, with modified, values, of the context the method was called on.
    */
    
    Defined in <ROOT>/wp-content/plugins/event-tickets/common/src/Tribe/Context.php:410
    public refresh($key = null) Clears the context cache forcing a re-fetch of the variables from the context.
    $2->refresh($key = null)
    /**
    * Clears the context cache forcing a re-fetch of the variables from the context.
    *
    * @since 4.9.5
    *
    * @param string $key An optional specific key to refresh, if passed only this key
    *                    will be refreshed.
    */
    
    Defined in <ROOT>/wp-content/plugins/event-tickets/common/src/Tribe/Context.php:426
    public get_locations(): array An array of read and write location in the shape of the `Tribe__Context::$locations` one, Returns the read and write locations set on the context.
    $2->get_locations()
    /**
    * Returns the read and write locations set on the context.
    *
    * @since 4.9.5
    *
    * @return array An array of read and write location in the shape of the `Tribe__Context::$locations` one,
    *               `[ <location> => [ 'read' => <read_locations>, 'write' => <write_locations> ] ]`.
    */
    
    Defined in <ROOT>/wp-content/plugins/event-tickets/common/src/Tribe/Context.php:442
    public disable_read_from(array $locations): void Disable reading from specific locations.
    $2->disable_read_from(array $locations)
    /**
    * Disable reading from specific locations.
    *
    * @since 6.5.5
    *
    * @param array $locations The locations to disable reading from.
    */
    
    Defined in <ROOT>/wp-content/plugins/event-tickets/common/src/Tribe/Context.php:479
    public dangerously_set_global_context(?array $fields = null, $whitelist = true) Modifies the global context using the defined write locations to persist the alt...
    $2->dangerously_set_global_context(?array $fields = null, $whitelist = true)
    /**
    * Modifies the global context using the defined write locations to persist the altered values.
    *
    * Please keep in mind this will set the the global context for the whole request and, when the
    * write location is an option, to the database.
    * With great power comes great responsibility: think a lot before using this.
    *
    * @param array|null $fields    An optional whitelist or blacklist of fields to write
    *                              depending on the value of the `$whitelist` parameter;
    *                              defaults to writing all available fields.
    * @param bool       $whitelist Whether the list of fields provided in the `$fields`
    *                              parameter should be treated as a whitelist (`true`) or
    *                              blacklist (`false`).
    *
    * @since 4.9.5
    */
    
    Defined in <ROOT>/wp-content/plugins/event-tickets/common/src/Tribe/Context.php:846
    public add_locations(array $locations): \Tribe__Context A clone of the current context with the additional read and Adds/replaces read and write locations to a context.
    $2->add_locations(array $locations)
    /**
    * Adds/replaces read and write locations to a context.
    *
    * Locations are merged with an `array_merge` call. To refine the locations get them first with the
    * `get_locations` method.
    *
    * @since 4.9.5
    *
    * @param array $locations An array of read and write locations to add to the context.
    *                         The array should have the same shape as the static `$locations`
    *                         one: `[ <location> => [ 'read' => <read_locations>, 'write' => <write_locations> ] ]`.
    *
    *
    * @return \Tribe__Context A clone of the current context with the additional read and
    *                         write locations added.
    */
    
    Defined in <ROOT>/wp-content/plugins/event-tickets/common/src/Tribe/Context.php:1109
    public set_locations(array $locations): \Tribe__Context A clone of the current context with modified locations. Sets, replacing them, the locations used by this context.
    $2->set_locations(array $locations)
    /**
    * Sets, replacing them, the locations used by this context.
    *
    * @since 4.9.5
    * @since 6.5.5 Remove the $use_default_locations parameter.
    *
    * @param array $locations An array of locations to replace the current ones.
    *
    * @return \Tribe__Context A clone of the current context with modified locations.
    */
    
    Defined in <ROOT>/wp-content/plugins/event-tickets/common/src/Tribe/Context.php:1126
    public to_array(): array An associative array of the context keys and values. Returns an array representation of the context.
    $2->to_array()
    /**
    * Returns an array representation of the context.
    *
    * @since 4.9.5
    *
    * @return array An associative array of the context keys and values.
    */
    
    Defined in <ROOT>/wp-content/plugins/event-tickets/common/src/Tribe/Context.php:1141
    public get_state(?array $fields = null, $whitelist = true): array Returns the current context state in a format suitable to hydrate a Redux-like s...
    $2->get_state(?array $fields = null, $whitelist = true)
    /**
    * Returns the current context state in a format suitable to hydrate a Redux-like
    * store on the front-end.
    *
    * This method is a filtered wrapper around the the `Tribe__Context::to_array` method to allow the
    * customization of the format when producing a store-compatible state.
    *
    * @param array|null $fields    An optional whitelist or blacklist of fields to include
    *                              depending on the value of the `$whitelist` parameter;
    *                              defaults to returning all available fields.
    * @param bool       $whitelist Whether the list of fields provided in the `$fields`
    *                              parameter should be treated as a whitelist (`true`) or
    *                              blacklist (`false`).
    *
    * @since 4.9.5
    *
    * @return array
    */
    
    Defined in <ROOT>/wp-content/plugins/event-tickets/common/src/Tribe/Context.php:1176
    public get_orm_args(?array $fields = null, $whitelist = true): array A map of ORM fields produced from the context current values. Returns an array of ORM arguments generated from the current context values.
    $2->get_orm_args(?array $fields = null, $whitelist = true)
    /**
    * Returns an array of ORM arguments generated from the current context values.
    *
    * @since 4.9.5
    *
    * @param array|null $fields    An optional whitelist or blacklist of fields to include
    *                              depending on the value of the `$whitelist` parameter;
    *                              defaults to returning all available fields.
    * @param bool       $whitelist Whether the list of fields provided in the `$fields`
    *                              parameter should be treated as a whitelist (`true`) or
    *                              blacklist (`false`).
    *
    * @return array A map of ORM fields produced from the context current values.
    */
    
    Defined in <ROOT>/wp-content/plugins/event-tickets/common/src/Tribe/Context.php:1230
    public dangerously_repopulate_locations() Just dont... Unless you very specifically know what you are doing **DO NOT USE T...
    $2->dangerously_repopulate_locations()
    /**
    * Just dont...
    * Unless you very specifically know what you are doing **DO NOT USE THIS METHOD**!
    *
    * Please keep in mind this will set force the context to repopulate all locations for the whole request, expensive
    * and very dangerous overall since it could affect all this things we hold dear in the request.
    *
    * With great power comes great responsibility: think a lot before using this.
    *
    * @since 4.13.0
    */
    
    Defined in <ROOT>/wp-content/plugins/event-tickets/common/src/Tribe/Context.php:1322
    public filter(array $filters, $default): mixed The first valid value found or the default value. Reads (gets) the value applying one or more filters.
    $2->filter(array $filters, $default)
    /**
    * Reads (gets) the value applying one or more filters.
    *
    * @since 4.9.8
    *
    * @param array $filters The list of filters to apply, in order.
    * @param mixed $default The default value to return.
    *
    * @return mixed The first valid value found or the default value.
    */
    
    Defined in <ROOT>/wp-content/plugins/event-tickets/common/src/Tribe/Context.php:1337
    public wp_parsed(array $vars, $default): mixed The first valid value found or the default value. Reads (gets) the value reading it from a query var parsed from the global `$wp` ...
    $2->wp_parsed(array $vars, $default)
    /**
    * Reads (gets) the value reading it from a query var parsed from the global `$wp` object.
    *
    * @since 4.9.8
    *
    * @param array $vars    The list of variables to read, in order.
    * @param mixed $default The default value to return if no variable was parsed.
    *
    * @return mixed The first valid value found or the default value.
    */
    
    Defined in <ROOT>/wp-content/plugins/event-tickets/common/src/Tribe/Context.php:1358
    public wp_matched_query(array $vars, $default): mixed The first valid value found or the default value. Reads (gets) the value reading it from a query var parsed from the query matched...
    $2->wp_matched_query(array $vars, $default)
    /**
    * Reads (gets) the value reading it from a query var parsed from the query matched by the global `$wp` object.
    *
    * @since 4.9.8
    *
    * @param array $vars    The list of variables to read, in order.
    * @param mixed $default The default value to return if no variable was parsed.
    *
    * @return mixed The first valid value found or the default value.
    */
    
    Defined in <ROOT>/wp-content/plugins/event-tickets/common/src/Tribe/Context.php:1379
    public map_to_read(array $input, $types = null, $passthru = false): array An associative array in the shape `[ <read_location> => <input_value> ]`. Since some read Maps an input array to the corresponding read locations.
    $2->map_to_read(array $input, $types = null, $passthru = false)
    /**
    * Maps an input array to the corresponding read locations.
    *
    * The resulting array can be used as input for the `alter_values` method.
    * The main use of this method is to leverage the Context knowledge of the read locations, and their types, to
    * "translate" an array of values to an array of valid read sources. As an example this is useful to "translate"
    * the locations to an array of query vars:
    *      $input = [ 'event_display' => 'some-view', 'event_date' => '2018-01-03' ];
    *      $query_args = tribe_context()->map_to_read( $input, Tribe__Context::REQUEST_VAR );
    *      $url = add_query_arg( $query_args, home_url() );
    *
    * @since 4.9.11
    *
    * @param array             $input       An associative array of values in the shape `[ <location> => <value> ]`;
    *                                       where `location` is the name of the location registered in the Context
    *                                       locations.
    * @param string|array|null $types       A white-list of read location types to include in the mapped output;
    *                                       `null`
    *                                       means all types are allowed.
    * @param bool              $passthru    Whether to pass unknown locations in the output or not; if `false` then
    *                                       any input key that's not a context location will not appear in the output;
    *                                       defaults to `false` to remove unknown locations from the output.
    *
    * @return array An associative array in the shape `[ <read_location> => <input_value> ]`. Since some read
    *              locations could have multiple sources the number of elements in this array will likely NOT be the
    *              same as the number of elements in the input array. When a read location as more than 1 source then
    *              the value will be duplicated, in the output array, to both sources.
    */
    
    Defined in <ROOT>/wp-content/plugins/event-tickets/common/src/Tribe/Context.php:1420
    public translate_sub_locations(array $values, $type, $direction = 'read'): array The original array, merged with the populated values. Translates sub-locations to their respective location key.
    $2->translate_sub_locations(array $values, $type, $direction = 'read')
    /**
    * Translates sub-locations to their respective location key.
    *
    * This method leverages the inherent knowledge of aliases stored in the Context locations to "translate" a
    * sub-location to its location key.
    * E.g. assume the `car` location is `read` from the [ 'carriage', 'vehicle', 'transport_mean' ] query var; calling
    * `$context->populate_aliases( [ 'vehicle' => 'hyunday' ], 'read', Context::QUERY_VAR )` would yield
    * `[ 'car' => 'hyunday' ]`.
    *
    * @since 4.9.12
    *
    * @param array  $values    An associative array of value to use as "masters" to populate the aliases.
    * @param string $type      The type of Context location to use, e.g. `Tribe__Context::QUERY_VAR`.
    * @param string $direction The direction to use for the location, one of `read` or `write`.
    *
    * @return array The original array, merged with the populated values.
    */
    
    Defined in <ROOT>/wp-content/plugins/event-tickets/common/src/Tribe/Context.php:1475
    public is($flag_key, $default = false): bool Whether the location has a truthy value or not. Convenience method to get and check if a location has a truthy value or not.
    $2->is($flag_key, $default = false)
    /**
    * Convenience method to get and check if a location has a truthy value or not.
    *
    * @since 4.9.18
    *
    * @param string $flag_key The location to check.
    * @param bool   $default  The default value to return if the location is not set.
    *
    * @return bool Whether the location has a truthy value or not.
    */
    
    Defined in <ROOT>/wp-content/plugins/event-tickets/common/src/Tribe/Context.php:1509
    public location_func(array $location_and_callback): mixed The return value of the callback, called on the location value. Reads the value from one callback, passing it the value of another Context locat...
    $2->location_func(array $location_and_callback)
    /**
    * Reads the value from one callback, passing it the value of another Context location.
    *
    * @since 4.9.18
    *
    * @param array $location_and_callback An array of two elements: the location key and the callback to call on the
    *                                     location value. The callback will receive the location value as argument.
    *
    * @return mixed The return value of the callback, called on the location value.
    */
    
    Defined in <ROOT>/wp-content/plugins/event-tickets/common/src/Tribe/Context.php:1525
    public doing_rest(): bool Whether the current request is a REST API one or not. Checks whether the current request is a REST API one or not.
    $2->doing_rest()
    /**
    * Checks whether the current request is a REST API one or not.
    *
    * @since 4.9.20
    *
    * @return bool Whether the current request is a REST API one or not.
    */
    
    Defined in <ROOT>/wp-content/plugins/event-tickets/common/src/Tribe/Context.php:1538
    public query_method($methods, $default): mixed The first valid value found or the default value. Reads the value from one or more global WP_Query object methods.
    $2->query_method($methods, $default)
    /**
    * Reads the value from one or more global WP_Query object methods.
    *
    * @since 4.9.20
    *
    * @param array $query_vars The list of query methods to call, in order.
    * @param mixed $default The default value to return if no method was defined on the global `WP_Query` object.
    *
    * @return mixed The first valid value found or the default value.
    */
    
    Defined in <ROOT>/wp-content/plugins/event-tickets/common/src/Tribe/Context.php:1552
    public doing_php_initial_state(): bool Whether the current request is for a PHP-rendered initial state or not. Whether the current request is for a PHP-rendered initial state or not.
    $2->doing_php_initial_state()
    /**
    * Whether the current request is for a PHP-rendered initial state or not.
    *
    * This method is a shortcut to make sure we're not doing an AJAX, REST or Cron request.
    *
    * @since 4.9.20
    *
    * @return bool Whether the current request is for a PHP-rendered initial state or not.
    */
    
    Defined in <ROOT>/wp-content/plugins/event-tickets/common/src/Tribe/Context.php:1578
    public get_read_key_for($location, $type = null): string Either the first key for the type of read location, or the input location if not found. Returns the first key, if there are many, that will be used to read a location.
    $2->get_read_key_for($location, $type = null)
    /**
    * Returns the first key, if there are many, that will be used to read a location.
    *
    * The type ar
    *
    * @since 4.9.20
    *
    * @param string      $location The location to get the read key for.
    * @param string|null $type     The type of read location to return the key for; default to `static::REQUEST_VAR`.
    *
    * @return string Either the first key for the type of read location, or the input location if not found.
    */
    
    Defined in <ROOT>/wp-content/plugins/event-tickets/common/src/Tribe/Context.php:1594
    public safe_set($values_or_key, $value = null) Safely set the value of a group of locations.
    $2->safe_set($values_or_key, $value = null)
    /**
    * Safely set the value of a group of locations.
    *
    * This method can only augment the context, without altering it; it can only add new values.
    *
    * @since 4.10.2
    *
    * @param array|string $values The values to set, if not already set or the key of the value to set, requires
    *                             the `$value` to be passed.
    * @param mixed|null $value    The value to set for the key, this parameter will be ignored if the `$values_or_key`
    *                             parameter is not a string.
    */
    
    Defined in <ROOT>/wp-content/plugins/event-tickets/common/src/Tribe/Context.php:1617
    public is_editing_posts_list($post_type): bool Whether the current request is one to edit a list of the specified post types or...
    $2->is_editing_posts_list($post_type)
    /**
    * Whether the current request is one to edit a list of the specified post types or not.
    *
    * The admin edit screen for a post type is the one that lists all the posts of that typ,
    * it has the URL `/wp-admin/edit.php?post_type=<post_type>`.
    *
    * @since 5.0.13
    * @since 5.0.13 Extracted the logic to the `TEC\Common\Context\Post_Request_Type` class.
    *
    * @param string|array<string> $post_type The post type or post types to check.
    *
    * @return bool Whether the current request is one to edit a list of the specified post types or not.
    */
    
    Defined in <ROOT>/wp-content/plugins/event-tickets/common/src/Tribe/Context.php:1643
    public is_inline_editing_post($post_type): bool Whether the current request is one to quick edit a single post of the specified ...
    $2->is_inline_editing_post($post_type)
    /**
    * Whether the current request is one to quick edit a single post of the specified post type or not.
    *
    * @since 5.0.13
    *
    * @param string|array<string> $post_type The post type or post types to check.
    *
    * @return bool Whether the current request is one to quick edit a single post of the specified post type or not.
    */
    
    Defined in <ROOT>/wp-content/plugins/event-tickets/common/src/Tribe/Context.php:1656
    protected request_var(array $request_vars, $default): mixed The first valid value found or the default value. Reads the value from one or more $_REQUEST vars.
    /**
    * Reads the value from one or more $_REQUEST vars.
    *
    * @since 4.9.5
    *
    * @param array $request_vars The list of request vars to lookup, in order.
    * @param mixed $default The default value to return.
    *
    * @return mixed The first valid value found or the default value.
    */
    
    Defined in <ROOT>/wp-content/plugins/event-tickets/common/src/Tribe/Context.php:493
    protected query_var(array $query_vars, $default): mixed The first valid value found or the default value. Reads the value from one or more global WP_Query object query variables.
    /**
    * Reads the value from one or more global WP_Query object query variables.
    *
    * @since 4.9.5
    *
    * @param array $query_vars The list of query vars to look up, in order.
    * @param mixed $default The default value to return.
    *
    * @return mixed The first valid value found or the default value.
    */
    
    Defined in <ROOT>/wp-content/plugins/event-tickets/common/src/Tribe/Context.php:517
    protected query_prop(array $query_props, $default): mixed The first valid value found or the default value. Reads the value from one or more global WP_Query object properties.
    /**
    * Reads the value from one or more global WP_Query object properties.
    *
    * @since 4.9.5
    *
    * @param array $query_props The list of properties to look up, in order.
    * @param mixed $default The default value to return.
    *
    * @return mixed The first valid value found or the default value.
    */
    
    Defined in <ROOT>/wp-content/plugins/event-tickets/common/src/Tribe/Context.php:547
    protected tribe_option(array $tribe_options, $default): mixed The first valid value found or the default value. Reads the value from one more more `tribe_option`s.
    /**
    * Reads the value from one more more `tribe_option`s.
    *
    * @since 4.9.5
    *
    * @param array $tribe_options The list of `tribe_option`s to lookup, in order.
    * @param mixed $default The default value to return.
    *
    * @return mixed The first valid value found or the default value.
    */
    
    Defined in <ROOT>/wp-content/plugins/event-tickets/common/src/Tribe/Context.php:572
    protected option(array $options, $default): mixed The first valid value found or the default value. Reads the value from one or more options.
    /**
    * Reads the value from one or more options.
    *
    * @since 4.9.5
    *
    * @param array $options The list of options to lookup, in order.
    * @param mixed $default The default value to return.
    *
    * @return mixed The first valid value found or the default value.
    */
    
    Defined in <ROOT>/wp-content/plugins/event-tickets/common/src/Tribe/Context.php:596
    protected transient(array $transients, $default): mixed The first valid value found or the default value. Reads the value from one or more transients.
    /**
    * Reads the value from one or more transients.
    *
    * @since 4.9.5
    *
    * @param array $transients The list of transients to lookup, in order.
    * @param mixed $default The default value to return.
    *
    * @return mixed The first valid value found or the default value.
    */
    
    Defined in <ROOT>/wp-content/plugins/event-tickets/common/src/Tribe/Context.php:620
    protected constant(array $constants, $default): mixed The first valid value found or the default value. Reads the value from one or more constants.
    /**
    * Reads the value from one or more constants.
    *
    * @since 4.9.5
    *
    * @param array $constants The list of constants to lookup, in order.
    * @param mixed $default The default value to return.
    *
    * @return mixed The first valid value found or the default value.
    */
    
    Defined in <ROOT>/wp-content/plugins/event-tickets/common/src/Tribe/Context.php:647
    protected global_var(array $global_vars, $default): mixed The first valid value found or the default value. Reads the value from one or more global variable.
    /**
    * Reads the value from one or more global variable.
    *
    * @since 4.9.5
    *
    * @param array $global_vars The list of global variables to look up, in order.
    * @param mixed $default The default value to return.
    *
    * @return mixed The first valid value found or the default value.
    */
    
    Defined in <ROOT>/wp-content/plugins/event-tickets/common/src/Tribe/Context.php:671
    protected static_prop(array $classes_and_props, $default): mixed The first valid value found or the default value. Reads the value from one or more class static properties.
    /**
    * Reads the value from one or more class static properties.
    *
    * @since 4.9.5
    *
    * @param array $classes_and_props An associative array in the shape [ <class> => <prop> ].
    * @param mixed $default The default value to return.
    *
    * @return mixed The first valid value found or the default value.
    */
    
    Defined in <ROOT>/wp-content/plugins/event-tickets/common/src/Tribe/Context.php:695
    protected prop(array $bindings_and_props, $default): mixed The first valid value found or the default value. Reads the value from one or more properties of implementations bound in the `tri...
    /**
    * Reads the value from one or more properties of implementations bound in the `tribe()` container.
    *
    * @since 4.9.5
    *
    * @param array $bindings_and_props An associative array in the shape [ <binding> => <prop> ].
    * @param mixed $default The default value to return.
    *
    * @return mixed The first valid value found or the default value.
    */
    
    Defined in <ROOT>/wp-content/plugins/event-tickets/common/src/Tribe/Context.php:724
    protected static_method(array $classes_and_methods, $default): mixed The first value that's not equal to the default one, the default value Reads the values from one or more static class methods.
    /**
    * Reads the values from one or more static class methods.
    *
    * @since 4.9.5
    *
    * @param array $classes_and_methods An associative array in the shape [ <class> => <method> ].
    * @param mixed $default The default value to return.
    *
    * @return mixed The first value that's not equal to the default one, the default value
    *               otherwise.
    */
    
    Defined in <ROOT>/wp-content/plugins/event-tickets/common/src/Tribe/Context.php:752
    protected method(array $bindings_and_methods, $default): mixed The first value that's not equal to the default one, the default value Reads the value from one or more methods called on implementations bound in the ...
    /**
    * Reads the value from one or more methods called on implementations bound in the `tribe()` container.
    *
    * @since 4.9.5
    *
    * @param array $bindings_and_methods An associative array in the shape [ <binding> => <method> ].
    * @param mixed $default              The default value to return.
    *
    * @return mixed The first value that's not equal to the default one, the default value
    *               otherwise.
    */
    
    Defined in <ROOT>/wp-content/plugins/event-tickets/common/src/Tribe/Context.php:780
    protected func(array $functions, $default): mixed The first value that's not equal to the default one, the default value Reads the value from one or more functions until one returns a value that's not ...
    /**
    * Reads the value from one or more functions until one returns a value that's not the default one.
    *
    * @since 4.9.5
    *
    * @param array $functions An array of functions to call, in order.
    * @param mixed $default The default value to return.
    *
    * @return mixed The first value that's not equal to the default one, the default value
    *               otherwise.
    */
    
    Defined in <ROOT>/wp-content/plugins/event-tickets/common/src/Tribe/Context.php:812
    protected write_request_var($request_var, $value) Writes an altered context value to a request var.
    /**
    * Writes an altered context value to a request var.
    *
    * @since 4.9.5
    *
    * @param string $request_var The request var to write.
    * @param mixed  $value       The value to set on the request var.
    */
    
    Defined in <ROOT>/wp-content/plugins/event-tickets/common/src/Tribe/Context.php:894
    protected write_query_prop($query_prop, $value) Writes an altered context value to a global WP_Query object properties.
    /**
    * Writes an altered context value to a global WP_Query object properties.
    *
    * @since 4.9.5
    *
    * @param string $query_prop The global WP_Query object property to write.
    * @param mixed  $value      The value to set on the query property.
    */
    
    Defined in <ROOT>/wp-content/plugins/event-tickets/common/src/Tribe/Context.php:914
    protected write_query_var($query_var, $value) Writes an altered context value to a global WP_Query object query var.
    /**
    * Writes an altered context value to a global WP_Query object query var.
    *
    * @since 4.9.5
    *
    * @param string $query_var The global WP_Query query var to write.
    * @param mixed  $value     The value to set on the query var.
    */
    
    Defined in <ROOT>/wp-content/plugins/event-tickets/common/src/Tribe/Context.php:932
    protected write_tribe_option($tribe_option, $value) Writes an altered context value to a `tribe_option`.
    /**
    * Writes an altered context value to a `tribe_option`.
    *
    * @since 4.9.5
    *
    * @param string $tribe_option The `tribe_option` to write.
    * @param mixed  $value        The value to set on the `tribe_option`.
    */
    
    Defined in <ROOT>/wp-content/plugins/event-tickets/common/src/Tribe/Context.php:950
    protected write_option($option_name, $value) Writes an altered context value to an option.
    /**
    * Writes an altered context value to an option.
    *
    * @since 4.9.5
    *
    * @param string $option_name The option to write.
    * @param mixed  $value       The value to set on the option.
    */
    
    Defined in <ROOT>/wp-content/plugins/event-tickets/common/src/Tribe/Context.php:962
    protected write_transient($transient, $expiration, $value) Writes an altered context value to a transient.
    /**
    * Writes an altered context value to a transient.
    *
    * @since 4.9.5
    *
    * @param string $transient  The transient to write.
    * @param int    $expiration The transient expiration time, in seconds.
    * @param mixed  $value      The value to set on the transient.
    */
    
    Defined in <ROOT>/wp-content/plugins/event-tickets/common/src/Tribe/Context.php:975
    protected write_constant($constant, $value) Writes an altered context value to a constant.
    /**
    * Writes an altered context value to a constant.
    *
    * @since 4.9.5
    *
    * @param string $constant The constant to define.
    * @param mixed  $value    The value to set on the constant.
    */
    
    Defined in <ROOT>/wp-content/plugins/event-tickets/common/src/Tribe/Context.php:987
    protected write_global_var($global_var, $value) Writes an altered context value to a global var.
    /**
    * Writes an altered context value to a global var.
    *
    * @since 4.9.5
    *
    * @param string $global_var The global var to set.
    * @param mixed  $value      The value to set on the global_var.
    */
    
    Defined in <ROOT>/wp-content/plugins/event-tickets/common/src/Tribe/Context.php:1002
    protected write_static_prop($class, $prop, $value) Writes an altered context value setting a public static property on a class.
    /**
    * Writes an altered context value setting a public static property on a class.
    *
    * @since 4.9.5
    *
    * @param string $class The class to set the static public property on.
    * @param string $prop  The static public property to set.
    * @param mixed  $value The value to set on the property.
    */
    
    Defined in <ROOT>/wp-content/plugins/event-tickets/common/src/Tribe/Context.php:1015
    protected write_prop($binding, $prop, $value) Writes an altered context value setting a public property on a `tribe()` binding...
    /**
    * Writes an altered context value setting a public property on a `tribe()` binding.
    *
    * @since 4.9.5
    *
    * @param string $binding The container binding to set the public property on.
    * @param string $prop    The public property to set.
    * @param mixed  $value   The value to set on the property.
    */
    
    Defined in <ROOT>/wp-content/plugins/event-tickets/common/src/Tribe/Context.php:1032
    protected write_static_method($class, $method, $value) Writes an altered context value calling a public static method on a class.
    /**
    * Writes an altered context value calling a public static method on a class.
    *
    * @since 4.9.5
    *
    * @param string $class  The class to call the public static method on.
    * @param string $method The static method to call.
    * @param mixed  $value  The value to pass to the public static method.
    */
    
    Defined in <ROOT>/wp-content/plugins/event-tickets/common/src/Tribe/Context.php:1055
    protected write_method($binding, $method, $value) Writes an altered context value calling a public method on a `tribe()` binding.
    /**
    * Writes an altered context value calling a public method on a `tribe()` binding.
    *
    * @since 4.9.5
    *
    * @param string $binding The `tribe()` container binding to call the public method on.
    * @param string $method  The method to call.
    * @param mixed  $value   The value to pass to the public method.
    */
    
    Defined in <ROOT>/wp-content/plugins/event-tickets/common/src/Tribe/Context.php:1071
    protected write_func($func, $value) Writes an altered context value calling a function or closure.
    /**
    * Writes an altered context value calling a function or closure.
    *
    * @since 4.9.5
    *
    * @param callable $func  function, closure or callable to call.
    * @param mixed    $value The value to pass to the callable.
    */
    
    Defined in <ROOT>/wp-content/plugins/event-tickets/common/src/Tribe/Context.php:1086
    protected populate_locations(): void Sets some locations that can only be set at runtime.
    /**
    * Sets some locations that can only be set at runtime.
    *
    * Using a flag locations are added only once per request.
    *
    * @since 4.9.8
    */
    
    Defined in <ROOT>/wp-content/plugins/event-tickets/common/src/Tribe/Context.php:1300
  • protected static $locations :: array (57)
    post_id => array (1)
    read => array (1)
    func() Closure <ROOT>/wp-content/plugins/event-tickets/common/src/Tribe/Context/locations.php:15
    • Available methods (6)
    permalink_structure => array (1)
    read => array (1)
    option => array (1)
    0 => string (19) "permalink_structure"
    plain_permalink => array (1)
    read => array (1)
    location_func => array (2)
    0 => string (19) "permalink_structure"
    1($struct) Closure <ROOT>/wp-content/plugins/event-tickets/common/src/Tribe/Context/locations.php:29
    • Parameters
    • Available methods (6)
    posts_per_page => array (2)
    read => array (3)
    request_var => string (14) "posts_per_page"
    option => string (14) "posts_per_page"
    tribe_option => array (2)
    0 => string (14) "posts_per_page"
    1 => string (12) "postsPerPage"
    write => array (1)
    request_var => string (14) "posts_per_page"
    is_main_query => array (2)
    read => array (1)
    func() Closure <ROOT>/wp-content/plugins/event-tickets/common/src/Tribe/Context/locations.php:47
    • Available methods (6)
    write => array (1)
    func() Closure <ROOT>/wp-content/plugins/event-tickets/common/src/Tribe/Context/locations.php:62
    • Available methods (6)
    paged => array (2)
    • Table (2)
    • Contents (2)
    • request_varquery_var
      readarray (2)array (2)
      writepagedpaged
    • read => array (2)
      • Table (2)
      • Contents (2)
      • 01
        request_varpagedpage
        query_varpagedpage
      • request_var => array (2)
        0 => string (5) "paged"
        1 => string (4) "page"
        query_var => array (2)
        0 => string (5) "paged"
        1 => string (4) "page"
      write => array (2)
      request_var => string (5) "paged"
      query_var => string (5) "paged"
    page => array (2)
    • Table (2)
    • Contents (2)
    • request_varquery_var
      readarray (2)array (2)
      writepagepage
    • read => array (2)
      • Table (2)
      • Contents (2)
      • 01
        request_varpagepaged
        query_varpagepaged
      • request_var => array (2)
        0 => string (4) "page"
        1 => string (5) "paged"
        query_var => array (2)
        0 => string (4) "page"
        1 => string (5) "paged"
      write => array (2)
      request_var => string (4) "page"
      query_var => string (4) "page"
    name => array (2)
    read => array (3)
    • Table (3)
    • Contents (3)
    • 01
      request_varnamepost_name
      wp_parsednamepost_name
      query_varnamepost_name
    • request_var => array (2)
      0 => string (4) "name"
      1 => string (9) "post_name"
      wp_parsed => array (2)
      0 => string (4) "name"
      1 => string (9) "post_name"
      query_var => array (2)
      0 => string (4) "name"
      1 => string (9) "post_name"
    write => array (2)
    • Table (2)
    • Contents (2)
    • 01
      request_varnamepost_name
      query_varnamepost_name
    • request_var => array (2)
      0 => string (4) "name"
      1 => string (9) "post_name"
      query_var => array (2)
      0 => string (4) "name"
      1 => string (9) "post_name"
    post_type => array (1)
    read => array (4)
    func() Closure <ROOT>/wp-content/plugins/event-tickets/common/src/Tribe/Context/locations.php:101
    • Available methods (6)
    query_prop => string (9) "post_type"
    query_var => string (9) "post_type"
    request_var => string (9) "post_type"
    single => array (1)
    read => array (1)
    query_method => string (9) "is_single"
    taxonomy => array (1)
    read => array (3)
    query_prop => array (1)
    0 => string (8) "taxonomy"
    query_var => array (1)
    0 => string (8) "taxonomy"
    request_var => array (1)
    0 => string (8) "taxonomy"
    post_tag => array (1)
    read => array (3)
    • Table (3)
    • Contents (3)
    • 01
      query_proppost_tagtag
      query_varpost_tagtag
      request_varpost_tagtag
    • query_prop => array (2)
      0 => string (8) "post_tag"
      1 => string (3) "tag"
      query_var => array (2)
      0 => string (8) "post_tag"
      1 => string (3) "tag"
      request_var => array (2)
      0 => string (8) "post_tag"
      1 => string (3) "tag"
    bulk_edit => array (1)
    read => array (1)
    request_var => array (1)
    0 => string (9) "bulk_edit"
    inline_save => array (1)
    read => array (1)
    func => array (1)
    0() Closure <ROOT>/wp-content/plugins/event-tickets/common/src/Tribe/Context/locations.php:155
    • Available methods (6)
    event_display => array (2)
    read => array (5)
    wp_matched_query => array (1)
    0 => string (12) "eventDisplay"
    wp_parsed => array (1)
    0 => string (12) "eventDisplay"
    request_var => array (4)
    0 => string (4) "view"
    1 => string (10) "tribe_view"
    2 => string (19) "tribe_event_display"
    3 => string (12) "eventDisplay"
    query_var => string (12) "eventDisplay"
    tribe_option => string (10) "viewOption"
    write => array (2)
    request_var => array (4)
    0 => string (4) "view"
    1 => string (10) "tribe_view"
    2 => string (19) "tribe_event_display"
    3 => string (12) "eventDisplay"
    query_var => string (12) "eventDisplay"
    view => array (2)
    read => array (6)
    wp_matched_query => array (1)
    0 => string (12) "eventDisplay"
    wp_parsed => array (1)
    0 => string (12) "eventDisplay"
    request_var => array (4)
    0 => string (4) "view"
    1 => string (10) "tribe_view"
    2 => string (19) "tribe_event_display"
    3 => string (12) "eventDisplay"
    query_var => array (2)
    0 => string (10) "tribe_view"
    1 => string (12) "eventDisplay"
    func => array (1)
    0() Closure <ROOT>/wp-content/plugins/the-events-calendar/src/Tribe/Service_Providers/Context.php:76
    • Available methods (6)
    tribe_option => string (10) "viewOption"
    write => array (2)
    request_var => array (4)
    0 => string (4) "view"
    1 => string (10) "tribe_view"
    2 => string (19) "tribe_event_display"
    3 => string (12) "eventDisplay"
    query_var => array (2)
    0 => string (10) "tribe_view"
    1 => string (12) "eventDisplay"
    view_data => array (2)
    read => array (3)
    request_var => array (2)
    0 => string (15) "tribe_view_data"
    1 => string (9) "view_data"
    query_var => array (2)
    0 => string (15) "tribe_view_data"
    1 => string (9) "view_data"
    filter => string (15) "tribe_view_data"
    write => array (2)
    request_var => string (15) "tribe_view_data"
    query_var => string (15) "tribe_view_data"
    event_date => array (2)
    read => array (4)
    func => array (1)
    0() Closure <ROOT>/wp-content/plugins/the-events-calendar/src/Tribe/Service_Providers/Context.php:105
    • Available methods (6)
    request_var => array (2)
    0 => string (9) "eventDate"
    1 => string (14) "tribe-bar-date"
    query_var => string (9) "eventDate"
    wp_parsed => string (9) "eventDate"
    write => array (2)
    request_var => array (2)
    0 => string (9) "eventDate"
    1 => string (14) "tribe-bar-date"
    query_var => string (9) "eventDate"
    event_sequence => array (2)
    • Table (2)
    • Contents (2)
    • request_varquery_var
      readeventSequenceeventSequence
      writeeventSequenceeventSequence
    • read => array (2)
      request_var => string (13) "eventSequence"
      query_var => string (13) "eventSequence"
      write => array (2)
      request_var => string (13) "eventSequence"
      query_var => string (13) "eventSequence"
    ical => array (2)
    • Table (2)
    • Contents (2)
    • request_varquery_var
      readicalical
      writeicalical
    • read => array (2)
      request_var => string (4) "ical"
      query_var => string (4) "ical"
      write => array (2)
      request_var => string (4) "ical"
      query_var => string (4) "ical"
    start_date => array (2)
    • Table (2)
    • Contents (2)
    • request_varquery_var
      readstart_datestart_date
      writestart_datestart_date
    • read => array (2)
      request_var => string (10) "start_date"
      query_var => string (10) "start_date"
      write => array (2)
      request_var => string (10) "start_date"
      query_var => string (10) "start_date"
    end_date => array (2)
    • Table (2)
    • Contents (2)
    • request_varquery_var
      readend_dateend_date
      writeend_dateend_date
    • read => array (2)
      request_var => string (8) "end_date"
      query_var => string (8) "end_date"
      write => array (2)
      request_var => string (8) "end_date"
      query_var => string (8) "end_date"
    featured => array (2)
    read => array (3)
    request_var => string (8) "featured"
    query_var => string (8) "featured"
    wp_matched_query => string (8) "featured"
    write => array (2)
    request_var => string (8) "featured"
    query_var => string (8) "featured"
    tribe_events_cat => array (2)
    • Table (2)
    • Contents (2)
    • request_varquery_var
      readtribe_events_cattribe_events_cat
      writetribe_events_cattribe_events_cat
    • read => array (2)
      request_var => string (16) "tribe_events_cat"
      query_var => string (16) "tribe_events_cat"
      write => array (2)
      request_var => string (16) "tribe_events_cat"
      query_var => string (16) "tribe_events_cat"
    remove_date_filters => array (2)
    • Table (2)
    • Contents (2)
    • request_varquery_var
      readtribe_remove_date_filterstribe_remove_date_filters
      writetribe_remove_date_filterstribe_remove_date_filters
    • read => array (2)
      request_var => string (25) "tribe_remove_date_filters"
      query_var => string (25) "tribe_remove_date_filters"
      write => array (2)
      request_var => string (25) "tribe_remove_date_filters"
      query_var => string (25) "tribe_remove_date_filters"
    event_display_mode => array (1)
    read => array (3)
    request_var => array (4)
    0 => string (4) "view"
    1 => string (10) "tribe_view"
    2 => string (19) "tribe_event_display"
    3 => string (12) "eventDisplay"
    wp_parsed => array (2)
    0 => string (12) "eventDisplay"
    1 => string (19) "tribe_event_display"
    query_var => array (2)
    0 => string (12) "eventDisplay"
    1 => string (19) "tribe_event_display"
    tribe_event_display => array (2)
    read => array (3)
    request_var => array (1)
    0 => string (19) "tribe_event_display"
    wp_parsed => array (1)
    0 => string (19) "tribe_event_display"
    query_var => array (1)
    0 => string (19) "tribe_event_display"
    write => array (2)
    request_var => array (2)
    0 => string (19) "tribe_event_display"
    1 => string (18) "event_display_mode"
    query_var => array (1)
    0 => string (19) "tribe_event_display"
    keyword => array (1)
    read => array (3)
    func => array (1)
    0() Closure <ROOT>/wp-content/plugins/the-events-calendar/src/Tribe/Service_Providers/Context.php:219
    • Available methods (6)
    request_var => array (3)
    0 => string (1) "s"
    1 => string (6) "search"
    2 => string (16) "tribe-bar-search"
    location_func => array (2)
    0 => string (9) "view_data"
    1($data) Closure <ROOT>/wp-content/plugins/the-events-calendar/src/Tribe/Service_Providers/Context.php:226
    • Parameters
    • Available methods (6)
    events_per_page => array (2)
    read => array (3)
    request_var => string (14) "posts_per_page"
    tribe_option => array (2)
    0 => string (14) "posts_per_page"
    1 => string (12) "postsPerPage"
    option => string (14) "posts_per_page"
    write => array (2)
    request_var => string (14) "posts_per_page"
    tribe_option => string (12) "postsPerPage"
    month_posts_per_page => array (2)
    read => array (1)
    tribe_option => string (16) "monthEventAmount"
    • Base64
    • base64_decode(tribe_option) binary string (12)
    write => array (1)
    tribe_option => string (16) "monthEventAmount"
    • Base64
    • base64_decode(tribe_option) binary string (12)
    today => array (1)
    read => array (1)
    func() Closure <ROOT>/wp-content/plugins/the-events-calendar/src/Tribe/Service_Providers/Context.php:257
    • Available methods (6)
    now => array (1)
    read => array (1)
    func() Closure <ROOT>/wp-content/plugins/the-events-calendar/src/Tribe/Service_Providers/Context.php:266
    • Available methods (6)
    start_of_week => array (2)
    read => array (1)
    option => string (13) "start_of_week"
    write => array (1)
    option => string (13) "start_of_week"
    tec_post_type => array (1)
    read => array (2)
    func => array (1)
    0() Closure <ROOT>/wp-content/plugins/the-events-calendar/src/Tribe/Service_Providers/Context.php:278
    • Available methods (6)
    location_func => array (2)
    0 => string (9) "post_type"
    1($post_type) Closure <ROOT>/wp-content/plugins/the-events-calendar/src/Tribe/Service_Providers/Context.php:291
    • Parameters
    • Available methods (6)
    event_post_type => array (1)
    read => array (2)
    func => array (1)
    0() Closure <ROOT>/wp-content/plugins/the-events-calendar/src/Tribe/Service_Providers/Context.php:306
    • Available methods (6)
    location_func => array (2)
    0 => string (9) "post_type"
    1($post_type) Closure <ROOT>/wp-content/plugins/the-events-calendar/src/Tribe/Service_Providers/Context.php:312
    • Parameters
    • Available methods (6)
    venue_post_type => array (1)
    read => array (2)
    func => array (1)
    0() Closure <ROOT>/wp-content/plugins/the-events-calendar/src/Tribe/Service_Providers/Context.php:321
    • Available methods (6)
    location_func => array (2)
    0 => string (9) "post_type"
    1($post_type) Closure <ROOT>/wp-content/plugins/the-events-calendar/src/Tribe/Service_Providers/Context.php:327
    • Parameters
    • Available methods (6)
    organizer_post_type => array (1)
    read => array (2)
    func => array (1)
    0() Closure <ROOT>/wp-content/plugins/the-events-calendar/src/Tribe/Service_Providers/Context.php:336
    • Available methods (6)
    location_func => array (2)
    0 => string (9) "post_type"
    1($post_type) Closure <ROOT>/wp-content/plugins/the-events-calendar/src/Tribe/Service_Providers/Context.php:342
    • Parameters
    • Available methods (6)
    event_category => array (1)
    read => array (3)
    query_prop => array (1)
    0 => string (16) "tribe_events_cat"
    query_var => array (1)
    0 => string (16) "tribe_events_cat"
    request_var => array (1)
    0 => string (16) "tribe_events_cat"
    view_url => array (1)
    read => array (2)
    func => array (1)
    0() Closure <ROOT>/wp-content/plugins/the-events-calendar/src/Tribe/Service_Providers/Context.php:358
    • Available methods (6)
    location_func => array (2)
    0 => string (9) "view_data"
    1($data) Closure <ROOT>/wp-content/plugins/the-events-calendar/src/Tribe/Service_Providers/Context.php:365
    • Parameters
    • Available methods (6)
    view_prev_url => array (1)
    read => array (1)
    func => array (2)
    0() Closure <ROOT>/wp-content/plugins/the-events-calendar/src/Tribe/Service_Providers/Context.php:378
    • Available methods (6)
    1() Closure <ROOT>/wp-content/plugins/the-events-calendar/src/Tribe/Service_Providers/Context.php:381
    • Available methods (6)
    view_request => array (1)
    read => array (4)
    wp_matched_query => array (1)
    0 => string (12) "eventDisplay"
    wp_parsed => array (1)
    0 => string (12) "eventDisplay"
    request_var => array (4)
    0 => string (4) "view"
    1 => string (10) "tribe_view"
    2 => string (19) "tribe_event_display"
    3 => string (12) "eventDisplay"
    query_var => array (2)
    0 => string (10) "tribe_view"
    1 => string (12) "eventDisplay"
    latest_event_date => array (2)
    read => array (1)
    tribe_option => array (1)
    0 => string (11) "latest_date"
    write => array (1)
    tribe_option => array (1)
    0 => string (11) "latest_date"
    earliest_event_date => array (2)
    read => array (1)
    tribe_option => array (1)
    0 => string (13) "earliest_date"
    write => array (1)
    tribe_option => array (1)
    0 => string (13) "earliest_date"
    events_status_data => array (1)
    read => array (1)
    request_var => array (1)
    0 => string (19) "tribe-events-status"
    tec_automator_admin_request => array (1)
    read => array (1)
    request_var => array (2)
    0 => string (23) "event_automator_request"
    1 => string (5) "state"
    shortcode => array (1)
    read => array (2)
    request_var => string (9) "shortcode"
    location_func => array (2)
    0 => string (13) "view_prev_url"
    1($url) Closure <ROOT>/wp-content/plugins/events-calendar-pro/src/Tribe/Views/V2/Shortcodes/Tribe_Events.php:785
    • Parameters
    • Available methods (6)
    hide_subsequent_recurrences => array (2)
    read => array (5)
    wp_matched_query => array (1)
    0 => string (27) "hide_subsequent_recurrences"
    wp_parsed => array (1)
    0 => string (27) "hide_subsequent_recurrences"
    request_var => array (1)
    0 => string (27) "hide_subsequent_recurrences"
    query_var => array (1)
    0 => string (27) "hide_subsequent_recurrences"
    tribe_option => array (1)
    0 => string (32) "hideSubsequentRecurrencesDefault"
    • Base64
    • base64_decode(0) binary string (24)
    write => array (2)
    request_var => array (1)
    0 => string (27) "hide_subsequent_recurrences"
    query_var => array (1)
    0 => string (27) "hide_subsequent_recurrences"
    geoloc_search => array (1)
    read => array (3)
    request_var => array (2)
    0 => string (18) "tribe-bar-location"
    1 => string (21) "tribe_geoloc_location"
    query_var => array (1)
    0 => string (21) "tribe_geoloc_location"
    location_func => array (2)
    0 => string (9) "view_data"
    1($view_data) Closure <ROOT>/wp-content/plugins/events-calendar-pro/src/Tribe/Service_Providers/Context.php:98
    • Uses
    • Parameters
    • Available methods (6)
    geoloc_lat => array (1)
    read => array (2)
    request_var => array (2)
    0 => string (20) "tribe-bar-geoloc-lat"
    1 => string (16) "tribe_geoloc_lat"
    query_var => array (1)
    0 => string (16) "tribe_geoloc_lat"
    geoloc_lng => array (1)
    read => array (2)
    request_var => array (2)
    0 => string (20) "tribe-bar-geoloc-lat"
    1 => string (16) "tribe_geoloc_lat"
    query_var => array (1)
    0 => string (16) "tribe_geoloc_lat"
    event_manager => array (1)
    read => array (1)
    func() Closure <ROOT>/wp-content/plugins/events-calendar-pro/src/Tribe/Service_Providers/Context.php:76
    • Available methods (6)
    related_series => array (1)
    read => array (1)
    func() Closure <ROOT>/wp-content/plugins/events-calendar-pro/src/Events_Pro/Custom_Tables/V1/Templates/Series_Filters.php:72
    • Available methods (6)
    tec_organizer_category => array (1)
    read => array (3)
    query_prop => array (1)
    0 => string (22) "tec_organizer_category"
    query_var => array (1)
    0 => string (22) "tec_organizer_category"
    request_var => array (1)
    0 => string (22) "tec_organizer_category"
    tec_venue_category => array (1)
    read => array (3)
    query_prop => array (1)
    0 => string (18) "tec_venue_category"
    query_var => array (1)
    0 => string (18) "tec_venue_category"
    request_var => array (1)
    0 => string (18) "tec_venue_category"
    events_virtual_data => array (1)
    read => array (1)
    request_var => array (1)
    0 => string (20) "tribe-events-virtual"
    events_virtual_request => array (1)
    read => array (1)
    request_var => array (2)
    0 => string (10) "ev_request"
    1 => string (5) "state"
    virtual => array (1)
    read => array (2)
    request_var => array (1)
    0 => string (7) "virtual"
    query_var => array (1)
    0 => string (7) "virtual"
    protected static $associative_locations :: array (5)
    0 => string (9) "transient"
    1 => string (6) "method"
    2 => string (13) "static_method"
    3 => string (4) "prop"
    4 => string (11) "static_prop"
    protected static $did_populate_locations :: boolean true
    const NOT_FOUND :: string (13) "__not_found__"
    \Tribe__Context::NOT_FOUND
    const REQUEST_VAR :: string (11) "request_var"
    \Tribe__Context::REQUEST_VAR
    const TRIBE_OPTION :: string (12) "tribe_option"
    \Tribe__Context::TRIBE_OPTION
    const OPTION :: string (6) "option"
    \Tribe__Context::OPTION
    const TRANSIENT :: string (9) "transient"
    \Tribe__Context::TRANSIENT
    const QUERY_VAR :: string (9) "query_var"
    \Tribe__Context::QUERY_VAR
    const QUERY_PROP :: string (10) "query_prop"
    \Tribe__Context::QUERY_PROP
    const QUERY_METHOD :: string (12) "query_method"
    \Tribe__Context::QUERY_METHOD
    const CONSTANT :: string (8) "constant"
    \Tribe__Context::CONSTANT
    const STATIC_PROP :: string (11) "static_prop"
    \Tribe__Context::STATIC_PROP
    const PROP :: string (4) "prop"
    \Tribe__Context::PROP
    const STATIC_METHOD :: string (13) "static_method"
    \Tribe__Context::STATIC_METHOD
    const METHOD :: string (6) "method"
    \Tribe__Context::METHOD
    const FUNC :: string (4) "func"
    \Tribe__Context::FUNC
    const GLOBAL_VAR :: string (10) "global_var"
    \Tribe__Context::GLOBAL_VAR
    const FILTER :: string (6) "filter"
    \Tribe__Context::FILTER
    const WP_PARSED :: string (9) "wp_parsed"
    \Tribe__Context::WP_PARSED
    const WP_MATCHED_QUERY :: string (16) "wp_matched_query"
    \Tribe__Context::WP_MATCHED_QUERY
    const LOCATION_FUNC :: string (13) "location_func"
    \Tribe__Context::LOCATION_FUNC
string (5) "venue"
boolean false
string (49) "tribe_events_views_v2_should_hijack_page_template"
string (17) "tec_is_venue_view"
Tribe__Context (6)
  • Properties (6)
  • Available methods (58)
  • Static class properties (22)
  • protected disable_read_from -> array (0)
    protected override_locations -> array (0)
    protected doing_ajax -> null
    protected doing_cron -> null
    protected request_cache -> array (4)
    is_main_query => boolean true
    post_type => string (7) "product"
    view => string (4) "list"
    single => boolean true
    protected post_state -> TEC\Common\Context\Post_Request_Type (0)
    • Available methods (4)
    • public is_inline_editing_post($post_type): bool Whether the current request is one to quick edit a single post of the specified ...
      /**
      * Whether the current request is one to quick edit a single post of the specified post type or not.
      *
      * @since 5.0.13
      *
      * @param string|array<string> $post_type The post type or post types to check.
      *
      * @return bool Whether the current request is one to quick edit a single post of the specified post type or not.
      */
      
      Defined in <ROOT>/wp-content/plugins/event-tickets/common/src/Common/Context/Post_Request_Type.php:33
      public is_editing_post_list($post_type): bool Whether the current request is one to edit a list of the specified post types or...
      /**
      * Whether the current request is one to edit a list of the specified post types or not.
      *
      * The admin edit screen for a post type is the one that lists all the posts of that typ,
      * it has the URL `/wp-admin/edit.php?post_type=<post_type>`.
      *
      * @since 5.0.13
      *
      * @param string|array<string> $post_type The post type or post types to check.
      *
      * @return bool Whether the current request is one to edit a list of the specified post types or not.
      */
      
      Defined in <ROOT>/wp-content/plugins/event-tickets/common/src/Common/Context/Post_Request_Type.php:59
      public is_new_post($post_type = null): bool Whether we are currently creating a new post, a post of post type(s) or not.
      /**
      * Whether we are currently creating a new post, a post of post type(s) or not.
      *
      * @since 4.7.7
      *
      * @param null $post_type The optional post type to check.
      *
      * @return bool Whether we are currently creating a new post, a post of post type(s) or not.
      */
      
      Defined in <ROOT>/wp-content/plugins/event-tickets/common/src/Common/Context/Post_Request_Type.php:82
      public is_editing_post($post_or_type = null): bool Whether we are currently editing a post(s), post type(s) or not.
      /**
      * Whether we are currently editing a post(s), post type(s) or not.
      *
      * @since 4.7.7
      *
      * @param null|array|string|int $post_or_type A post ID, post type, an array of post types or post IDs, `null`
      *                                            to just make sure we are currently editing a post.
      *
      * @return bool
      */
      
      Defined in <ROOT>/wp-content/plugins/event-tickets/common/src/Common/Context/Post_Request_Type.php:100
  • public __construct(?TEC\Common\Context\Post_Request_Type $post_state = null) Tribe__Context constructor.
    new \Tribe__Context(?TEC\Common\Context\Post_Request_Type $post_state = null)
    /**
    * Tribe__Context constructor.
    *
    * @since 5.0.13
    *
    * @param Post_Request_Type|null $post_state An instance of the post state handler.
    */
    
    Defined in <ROOT>/wp-content/plugins/event-tickets/common/src/Tribe/Context.php:263
    public is_new_post($post_type = null): bool Whether we are currently creating a new post, a post of post type(s) or not. Whether we are currently creating a new post, a post of post type(s) or not.
    $2->is_new_post($post_type = null)
    /**
    * Whether we are currently creating a new post, a post of post type(s) or not.
    *
    * @since 4.7.7
    * @since 5.0.13 Extracted the logic to the `TEC\Common\Context\Post_Request_Type` class.
    *
    * @param null $post_type The optional post type to check.
    *
    * @return bool Whether we are currently creating a new post, a post of post type(s) or not.
    */
    
    Defined in <ROOT>/wp-content/plugins/event-tickets/common/src/Tribe/Context.php:277
    public is_editing_post($post_or_type = null): bool Whether we are currently editing a post(s), post type(s) or not.
    $2->is_editing_post($post_or_type = null)
    /**
    * Whether we are currently editing a post(s), post type(s) or not.
    *
    * @since 4.7.7
    * @since 5.0.13 Extracted the logic to the `TEC\Common\Context\Post_Request_Type` class.
    *
    * @param null|array|string|int $post_or_type A post ID, post type, an array of post types or post IDs, `null`
    *                                            to just make sure we are currently editing a post.
    *
    * @return bool
    */
    
    Defined in <ROOT>/wp-content/plugins/event-tickets/common/src/Tribe/Context.php:292
    public doing_ajax(): boolean Helper function to indicate whether the current execution context is AJAX.
    $2->doing_ajax()
    /**
    * Helper function to indicate whether the current execution context is AJAX.
    *
    * This method exists to allow us test code that behaves differently depending on the execution
    * context.
    *
    * @since 4.7.12
    * @since 4.9.5 Removed the $doing_ajax parameter.
    *
    * @return boolean
    */
    
    Defined in <ROOT>/wp-content/plugins/event-tickets/common/src/Tribe/Context.php:307
    public doing_cron(): bool Whether the context of the current HTTP request is a Cron one or not. Checks whether the context of the current HTTP request is a Cron one or not.
    $2->doing_cron()
    /**
    * Checks whether the context of the current HTTP request is a Cron one or not.
    *
    * @since 4.7.23
    * @since 4.9.5 Removed the $doing_cron parameter.
    *
    * @return bool Whether the context of the current HTTP request is a Cron one or not.
    */
    
    Defined in <ROOT>/wp-content/plugins/event-tickets/common/src/Tribe/Context.php:321
    public get($key, $default = null, $force = false): mixed The value from the first location that can provide it or the default Gets a value reading it from the location(s) defined in the `Tribe__Context::$pr...
    $2->get($key, $default = null, $force = false)
    /**
    * Gets a value reading it from the location(s) defined in the `Tribe__Context::$props
    *
    * @since 4.9.5
    *
    * @param string     $key     The key of the variable to fetch.
    * @param mixed|null $default The default value to return if not found.
    * @param bool $force Whether to force the re-fetch of the value from the context or
    *                    not; defaults to `false`.
    *
    * @return mixed The value from the first location that can provide it or the default
    *               value if not found.
    */
    
    Defined in <ROOT>/wp-content/plugins/event-tickets/common/src/Tribe/Context.php:340
    public alter(array $values): \Tribe__Context A clone, with modified, values, of the context the method was called on. Alters the context.
    $2->alter(array $values)
    /**
    * Alters the context.
    *
    * Due to its immutable nature setting values on the context will NOT modify the
    * context but return a modified clone.
    * If you need to modify the global context update the location(s) it should read from
    * and call the `refresh` method.
    * Example: `$widget_context = tribe_context()->alter( $widget_args );`.
    *
    * @since 4.9.5
    *
    * @param array $values An associative array of key-value pairs to modify the context.
    *
    * @return \Tribe__Context A clone, with modified, values, of the context the method was called on.
    */
    
    Defined in <ROOT>/wp-content/plugins/event-tickets/common/src/Tribe/Context.php:410
    public refresh($key = null) Clears the context cache forcing a re-fetch of the variables from the context.
    $2->refresh($key = null)
    /**
    * Clears the context cache forcing a re-fetch of the variables from the context.
    *
    * @since 4.9.5
    *
    * @param string $key An optional specific key to refresh, if passed only this key
    *                    will be refreshed.
    */
    
    Defined in <ROOT>/wp-content/plugins/event-tickets/common/src/Tribe/Context.php:426
    public get_locations(): array An array of read and write location in the shape of the `Tribe__Context::$locations` one, Returns the read and write locations set on the context.
    $2->get_locations()
    /**
    * Returns the read and write locations set on the context.
    *
    * @since 4.9.5
    *
    * @return array An array of read and write location in the shape of the `Tribe__Context::$locations` one,
    *               `[ <location> => [ 'read' => <read_locations>, 'write' => <write_locations> ] ]`.
    */
    
    Defined in <ROOT>/wp-content/plugins/event-tickets/common/src/Tribe/Context.php:442
    public disable_read_from(array $locations): void Disable reading from specific locations.
    $2->disable_read_from(array $locations)
    /**
    * Disable reading from specific locations.
    *
    * @since 6.5.5
    *
    * @param array $locations The locations to disable reading from.
    */
    
    Defined in <ROOT>/wp-content/plugins/event-tickets/common/src/Tribe/Context.php:479
    public dangerously_set_global_context(?array $fields = null, $whitelist = true) Modifies the global context using the defined write locations to persist the alt...
    $2->dangerously_set_global_context(?array $fields = null, $whitelist = true)
    /**
    * Modifies the global context using the defined write locations to persist the altered values.
    *
    * Please keep in mind this will set the the global context for the whole request and, when the
    * write location is an option, to the database.
    * With great power comes great responsibility: think a lot before using this.
    *
    * @param array|null $fields    An optional whitelist or blacklist of fields to write
    *                              depending on the value of the `$whitelist` parameter;
    *                              defaults to writing all available fields.
    * @param bool       $whitelist Whether the list of fields provided in the `$fields`
    *                              parameter should be treated as a whitelist (`true`) or
    *                              blacklist (`false`).
    *
    * @since 4.9.5
    */
    
    Defined in <ROOT>/wp-content/plugins/event-tickets/common/src/Tribe/Context.php:846
    public add_locations(array $locations): \Tribe__Context A clone of the current context with the additional read and Adds/replaces read and write locations to a context.
    $2->add_locations(array $locations)
    /**
    * Adds/replaces read and write locations to a context.
    *
    * Locations are merged with an `array_merge` call. To refine the locations get them first with the
    * `get_locations` method.
    *
    * @since 4.9.5
    *
    * @param array $locations An array of read and write locations to add to the context.
    *                         The array should have the same shape as the static `$locations`
    *                         one: `[ <location> => [ 'read' => <read_locations>, 'write' => <write_locations> ] ]`.
    *
    *
    * @return \Tribe__Context A clone of the current context with the additional read and
    *                         write locations added.
    */
    
    Defined in <ROOT>/wp-content/plugins/event-tickets/common/src/Tribe/Context.php:1109
    public set_locations(array $locations): \Tribe__Context A clone of the current context with modified locations. Sets, replacing them, the locations used by this context.
    $2->set_locations(array $locations)
    /**
    * Sets, replacing them, the locations used by this context.
    *
    * @since 4.9.5
    * @since 6.5.5 Remove the $use_default_locations parameter.
    *
    * @param array $locations An array of locations to replace the current ones.
    *
    * @return \Tribe__Context A clone of the current context with modified locations.
    */
    
    Defined in <ROOT>/wp-content/plugins/event-tickets/common/src/Tribe/Context.php:1126
    public to_array(): array An associative array of the context keys and values. Returns an array representation of the context.
    $2->to_array()
    /**
    * Returns an array representation of the context.
    *
    * @since 4.9.5
    *
    * @return array An associative array of the context keys and values.
    */
    
    Defined in <ROOT>/wp-content/plugins/event-tickets/common/src/Tribe/Context.php:1141
    public get_state(?array $fields = null, $whitelist = true): array Returns the current context state in a format suitable to hydrate a Redux-like s...
    $2->get_state(?array $fields = null, $whitelist = true)
    /**
    * Returns the current context state in a format suitable to hydrate a Redux-like
    * store on the front-end.
    *
    * This method is a filtered wrapper around the the `Tribe__Context::to_array` method to allow the
    * customization of the format when producing a store-compatible state.
    *
    * @param array|null $fields    An optional whitelist or blacklist of fields to include
    *                              depending on the value of the `$whitelist` parameter;
    *                              defaults to returning all available fields.
    * @param bool       $whitelist Whether the list of fields provided in the `$fields`
    *                              parameter should be treated as a whitelist (`true`) or
    *                              blacklist (`false`).
    *
    * @since 4.9.5
    *
    * @return array
    */
    
    Defined in <ROOT>/wp-content/plugins/event-tickets/common/src/Tribe/Context.php:1176
    public get_orm_args(?array $fields = null, $whitelist = true): array A map of ORM fields produced from the context current values. Returns an array of ORM arguments generated from the current context values.
    $2->get_orm_args(?array $fields = null, $whitelist = true)
    /**
    * Returns an array of ORM arguments generated from the current context values.
    *
    * @since 4.9.5
    *
    * @param array|null $fields    An optional whitelist or blacklist of fields to include
    *                              depending on the value of the `$whitelist` parameter;
    *                              defaults to returning all available fields.
    * @param bool       $whitelist Whether the list of fields provided in the `$fields`
    *                              parameter should be treated as a whitelist (`true`) or
    *                              blacklist (`false`).
    *
    * @return array A map of ORM fields produced from the context current values.
    */
    
    Defined in <ROOT>/wp-content/plugins/event-tickets/common/src/Tribe/Context.php:1230
    public dangerously_repopulate_locations() Just dont... Unless you very specifically know what you are doing **DO NOT USE T...
    $2->dangerously_repopulate_locations()
    /**
    * Just dont...
    * Unless you very specifically know what you are doing **DO NOT USE THIS METHOD**!
    *
    * Please keep in mind this will set force the context to repopulate all locations for the whole request, expensive
    * and very dangerous overall since it could affect all this things we hold dear in the request.
    *
    * With great power comes great responsibility: think a lot before using this.
    *
    * @since 4.13.0
    */
    
    Defined in <ROOT>/wp-content/plugins/event-tickets/common/src/Tribe/Context.php:1322
    public filter(array $filters, $default): mixed The first valid value found or the default value. Reads (gets) the value applying one or more filters.
    $2->filter(array $filters, $default)
    /**
    * Reads (gets) the value applying one or more filters.
    *
    * @since 4.9.8
    *
    * @param array $filters The list of filters to apply, in order.
    * @param mixed $default The default value to return.
    *
    * @return mixed The first valid value found or the default value.
    */
    
    Defined in <ROOT>/wp-content/plugins/event-tickets/common/src/Tribe/Context.php:1337
    public wp_parsed(array $vars, $default): mixed The first valid value found or the default value. Reads (gets) the value reading it from a query var parsed from the global `$wp` ...
    $2->wp_parsed(array $vars, $default)
    /**
    * Reads (gets) the value reading it from a query var parsed from the global `$wp` object.
    *
    * @since 4.9.8
    *
    * @param array $vars    The list of variables to read, in order.
    * @param mixed $default The default value to return if no variable was parsed.
    *
    * @return mixed The first valid value found or the default value.
    */
    
    Defined in <ROOT>/wp-content/plugins/event-tickets/common/src/Tribe/Context.php:1358
    public wp_matched_query(array $vars, $default): mixed The first valid value found or the default value. Reads (gets) the value reading it from a query var parsed from the query matched...
    $2->wp_matched_query(array $vars, $default)
    /**
    * Reads (gets) the value reading it from a query var parsed from the query matched by the global `$wp` object.
    *
    * @since 4.9.8
    *
    * @param array $vars    The list of variables to read, in order.
    * @param mixed $default The default value to return if no variable was parsed.
    *
    * @return mixed The first valid value found or the default value.
    */
    
    Defined in <ROOT>/wp-content/plugins/event-tickets/common/src/Tribe/Context.php:1379
    public map_to_read(array $input, $types = null, $passthru = false): array An associative array in the shape `[ <read_location> => <input_value> ]`. Since some read Maps an input array to the corresponding read locations.
    $2->map_to_read(array $input, $types = null, $passthru = false)
    /**
    * Maps an input array to the corresponding read locations.
    *
    * The resulting array can be used as input for the `alter_values` method.
    * The main use of this method is to leverage the Context knowledge of the read locations, and their types, to
    * "translate" an array of values to an array of valid read sources. As an example this is useful to "translate"
    * the locations to an array of query vars:
    *      $input = [ 'event_display' => 'some-view', 'event_date' => '2018-01-03' ];
    *      $query_args = tribe_context()->map_to_read( $input, Tribe__Context::REQUEST_VAR );
    *      $url = add_query_arg( $query_args, home_url() );
    *
    * @since 4.9.11
    *
    * @param array             $input       An associative array of values in the shape `[ <location> => <value> ]`;
    *                                       where `location` is the name of the location registered in the Context
    *                                       locations.
    * @param string|array|null $types       A white-list of read location types to include in the mapped output;
    *                                       `null`
    *                                       means all types are allowed.
    * @param bool              $passthru    Whether to pass unknown locations in the output or not; if `false` then
    *                                       any input key that's not a context location will not appear in the output;
    *                                       defaults to `false` to remove unknown locations from the output.
    *
    * @return array An associative array in the shape `[ <read_location> => <input_value> ]`. Since some read
    *              locations could have multiple sources the number of elements in this array will likely NOT be the
    *              same as the number of elements in the input array. When a read location as more than 1 source then
    *              the value will be duplicated, in the output array, to both sources.
    */
    
    Defined in <ROOT>/wp-content/plugins/event-tickets/common/src/Tribe/Context.php:1420
    public translate_sub_locations(array $values, $type, $direction = 'read'): array The original array, merged with the populated values. Translates sub-locations to their respective location key.
    $2->translate_sub_locations(array $values, $type, $direction = 'read')
    /**
    * Translates sub-locations to their respective location key.
    *
    * This method leverages the inherent knowledge of aliases stored in the Context locations to "translate" a
    * sub-location to its location key.
    * E.g. assume the `car` location is `read` from the [ 'carriage', 'vehicle', 'transport_mean' ] query var; calling
    * `$context->populate_aliases( [ 'vehicle' => 'hyunday' ], 'read', Context::QUERY_VAR )` would yield
    * `[ 'car' => 'hyunday' ]`.
    *
    * @since 4.9.12
    *
    * @param array  $values    An associative array of value to use as "masters" to populate the aliases.
    * @param string $type      The type of Context location to use, e.g. `Tribe__Context::QUERY_VAR`.
    * @param string $direction The direction to use for the location, one of `read` or `write`.
    *
    * @return array The original array, merged with the populated values.
    */
    
    Defined in <ROOT>/wp-content/plugins/event-tickets/common/src/Tribe/Context.php:1475
    public is($flag_key, $default = false): bool Whether the location has a truthy value or not. Convenience method to get and check if a location has a truthy value or not.
    $2->is($flag_key, $default = false)
    /**
    * Convenience method to get and check if a location has a truthy value or not.
    *
    * @since 4.9.18
    *
    * @param string $flag_key The location to check.
    * @param bool   $default  The default value to return if the location is not set.
    *
    * @return bool Whether the location has a truthy value or not.
    */
    
    Defined in <ROOT>/wp-content/plugins/event-tickets/common/src/Tribe/Context.php:1509
    public location_func(array $location_and_callback): mixed The return value of the callback, called on the location value. Reads the value from one callback, passing it the value of another Context locat...
    $2->location_func(array $location_and_callback)
    /**
    * Reads the value from one callback, passing it the value of another Context location.
    *
    * @since 4.9.18
    *
    * @param array $location_and_callback An array of two elements: the location key and the callback to call on the
    *                                     location value. The callback will receive the location value as argument.
    *
    * @return mixed The return value of the callback, called on the location value.
    */
    
    Defined in <ROOT>/wp-content/plugins/event-tickets/common/src/Tribe/Context.php:1525
    public doing_rest(): bool Whether the current request is a REST API one or not. Checks whether the current request is a REST API one or not.
    $2->doing_rest()
    /**
    * Checks whether the current request is a REST API one or not.
    *
    * @since 4.9.20
    *
    * @return bool Whether the current request is a REST API one or not.
    */
    
    Defined in <ROOT>/wp-content/plugins/event-tickets/common/src/Tribe/Context.php:1538
    public query_method($methods, $default): mixed The first valid value found or the default value. Reads the value from one or more global WP_Query object methods.
    $2->query_method($methods, $default)
    /**
    * Reads the value from one or more global WP_Query object methods.
    *
    * @since 4.9.20
    *
    * @param array $query_vars The list of query methods to call, in order.
    * @param mixed $default The default value to return if no method was defined on the global `WP_Query` object.
    *
    * @return mixed The first valid value found or the default value.
    */
    
    Defined in <ROOT>/wp-content/plugins/event-tickets/common/src/Tribe/Context.php:1552
    public doing_php_initial_state(): bool Whether the current request is for a PHP-rendered initial state or not. Whether the current request is for a PHP-rendered initial state or not.
    $2->doing_php_initial_state()
    /**
    * Whether the current request is for a PHP-rendered initial state or not.
    *
    * This method is a shortcut to make sure we're not doing an AJAX, REST or Cron request.
    *
    * @since 4.9.20
    *
    * @return bool Whether the current request is for a PHP-rendered initial state or not.
    */
    
    Defined in <ROOT>/wp-content/plugins/event-tickets/common/src/Tribe/Context.php:1578
    public get_read_key_for($location, $type = null): string Either the first key for the type of read location, or the input location if not found. Returns the first key, if there are many, that will be used to read a location.
    $2->get_read_key_for($location, $type = null)
    /**
    * Returns the first key, if there are many, that will be used to read a location.
    *
    * The type ar
    *
    * @since 4.9.20
    *
    * @param string      $location The location to get the read key for.
    * @param string|null $type     The type of read location to return the key for; default to `static::REQUEST_VAR`.
    *
    * @return string Either the first key for the type of read location, or the input location if not found.
    */
    
    Defined in <ROOT>/wp-content/plugins/event-tickets/common/src/Tribe/Context.php:1594
    public safe_set($values_or_key, $value = null) Safely set the value of a group of locations.
    $2->safe_set($values_or_key, $value = null)
    /**
    * Safely set the value of a group of locations.
    *
    * This method can only augment the context, without altering it; it can only add new values.
    *
    * @since 4.10.2
    *
    * @param array|string $values The values to set, if not already set or the key of the value to set, requires
    *                             the `$value` to be passed.
    * @param mixed|null $value    The value to set for the key, this parameter will be ignored if the `$values_or_key`
    *                             parameter is not a string.
    */
    
    Defined in <ROOT>/wp-content/plugins/event-tickets/common/src/Tribe/Context.php:1617
    public is_editing_posts_list($post_type): bool Whether the current request is one to edit a list of the specified post types or...
    $2->is_editing_posts_list($post_type)
    /**
    * Whether the current request is one to edit a list of the specified post types or not.
    *
    * The admin edit screen for a post type is the one that lists all the posts of that typ,
    * it has the URL `/wp-admin/edit.php?post_type=<post_type>`.
    *
    * @since 5.0.13
    * @since 5.0.13 Extracted the logic to the `TEC\Common\Context\Post_Request_Type` class.
    *
    * @param string|array<string> $post_type The post type or post types to check.
    *
    * @return bool Whether the current request is one to edit a list of the specified post types or not.
    */
    
    Defined in <ROOT>/wp-content/plugins/event-tickets/common/src/Tribe/Context.php:1643
    public is_inline_editing_post($post_type): bool Whether the current request is one to quick edit a single post of the specified ...
    $2->is_inline_editing_post($post_type)
    /**
    * Whether the current request is one to quick edit a single post of the specified post type or not.
    *
    * @since 5.0.13
    *
    * @param string|array<string> $post_type The post type or post types to check.
    *
    * @return bool Whether the current request is one to quick edit a single post of the specified post type or not.
    */
    
    Defined in <ROOT>/wp-content/plugins/event-tickets/common/src/Tribe/Context.php:1656
    protected request_var(array $request_vars, $default): mixed The first valid value found or the default value. Reads the value from one or more $_REQUEST vars.
    /**
    * Reads the value from one or more $_REQUEST vars.
    *
    * @since 4.9.5
    *
    * @param array $request_vars The list of request vars to lookup, in order.
    * @param mixed $default The default value to return.
    *
    * @return mixed The first valid value found or the default value.
    */
    
    Defined in <ROOT>/wp-content/plugins/event-tickets/common/src/Tribe/Context.php:493
    protected query_var(array $query_vars, $default): mixed The first valid value found or the default value. Reads the value from one or more global WP_Query object query variables.
    /**
    * Reads the value from one or more global WP_Query object query variables.
    *
    * @since 4.9.5
    *
    * @param array $query_vars The list of query vars to look up, in order.
    * @param mixed $default The default value to return.
    *
    * @return mixed The first valid value found or the default value.
    */
    
    Defined in <ROOT>/wp-content/plugins/event-tickets/common/src/Tribe/Context.php:517
    protected query_prop(array $query_props, $default): mixed The first valid value found or the default value. Reads the value from one or more global WP_Query object properties.
    /**
    * Reads the value from one or more global WP_Query object properties.
    *
    * @since 4.9.5
    *
    * @param array $query_props The list of properties to look up, in order.
    * @param mixed $default The default value to return.
    *
    * @return mixed The first valid value found or the default value.
    */
    
    Defined in <ROOT>/wp-content/plugins/event-tickets/common/src/Tribe/Context.php:547
    protected tribe_option(array $tribe_options, $default): mixed The first valid value found or the default value. Reads the value from one more more `tribe_option`s.
    /**
    * Reads the value from one more more `tribe_option`s.
    *
    * @since 4.9.5
    *
    * @param array $tribe_options The list of `tribe_option`s to lookup, in order.
    * @param mixed $default The default value to return.
    *
    * @return mixed The first valid value found or the default value.
    */
    
    Defined in <ROOT>/wp-content/plugins/event-tickets/common/src/Tribe/Context.php:572
    protected option(array $options, $default): mixed The first valid value found or the default value. Reads the value from one or more options.
    /**
    * Reads the value from one or more options.
    *
    * @since 4.9.5
    *
    * @param array $options The list of options to lookup, in order.
    * @param mixed $default The default value to return.
    *
    * @return mixed The first valid value found or the default value.
    */
    
    Defined in <ROOT>/wp-content/plugins/event-tickets/common/src/Tribe/Context.php:596
    protected transient(array $transients, $default): mixed The first valid value found or the default value. Reads the value from one or more transients.
    /**
    * Reads the value from one or more transients.
    *
    * @since 4.9.5
    *
    * @param array $transients The list of transients to lookup, in order.
    * @param mixed $default The default value to return.
    *
    * @return mixed The first valid value found or the default value.
    */
    
    Defined in <ROOT>/wp-content/plugins/event-tickets/common/src/Tribe/Context.php:620
    protected constant(array $constants, $default): mixed The first valid value found or the default value. Reads the value from one or more constants.
    /**
    * Reads the value from one or more constants.
    *
    * @since 4.9.5
    *
    * @param array $constants The list of constants to lookup, in order.
    * @param mixed $default The default value to return.
    *
    * @return mixed The first valid value found or the default value.
    */
    
    Defined in <ROOT>/wp-content/plugins/event-tickets/common/src/Tribe/Context.php:647
    protected global_var(array $global_vars, $default): mixed The first valid value found or the default value. Reads the value from one or more global variable.
    /**
    * Reads the value from one or more global variable.
    *
    * @since 4.9.5
    *
    * @param array $global_vars The list of global variables to look up, in order.
    * @param mixed $default The default value to return.
    *
    * @return mixed The first valid value found or the default value.
    */
    
    Defined in <ROOT>/wp-content/plugins/event-tickets/common/src/Tribe/Context.php:671
    protected static_prop(array $classes_and_props, $default): mixed The first valid value found or the default value. Reads the value from one or more class static properties.
    /**
    * Reads the value from one or more class static properties.
    *
    * @since 4.9.5
    *
    * @param array $classes_and_props An associative array in the shape [ <class> => <prop> ].
    * @param mixed $default The default value to return.
    *
    * @return mixed The first valid value found or the default value.
    */
    
    Defined in <ROOT>/wp-content/plugins/event-tickets/common/src/Tribe/Context.php:695
    protected prop(array $bindings_and_props, $default): mixed The first valid value found or the default value. Reads the value from one or more properties of implementations bound in the `tri...
    /**
    * Reads the value from one or more properties of implementations bound in the `tribe()` container.
    *
    * @since 4.9.5
    *
    * @param array $bindings_and_props An associative array in the shape [ <binding> => <prop> ].
    * @param mixed $default The default value to return.
    *
    * @return mixed The first valid value found or the default value.
    */
    
    Defined in <ROOT>/wp-content/plugins/event-tickets/common/src/Tribe/Context.php:724
    protected static_method(array $classes_and_methods, $default): mixed The first value that's not equal to the default one, the default value Reads the values from one or more static class methods.
    /**
    * Reads the values from one or more static class methods.
    *
    * @since 4.9.5
    *
    * @param array $classes_and_methods An associative array in the shape [ <class> => <method> ].
    * @param mixed $default The default value to return.
    *
    * @return mixed The first value that's not equal to the default one, the default value
    *               otherwise.
    */
    
    Defined in <ROOT>/wp-content/plugins/event-tickets/common/src/Tribe/Context.php:752
    protected method(array $bindings_and_methods, $default): mixed The first value that's not equal to the default one, the default value Reads the value from one or more methods called on implementations bound in the ...
    /**
    * Reads the value from one or more methods called on implementations bound in the `tribe()` container.
    *
    * @since 4.9.5
    *
    * @param array $bindings_and_methods An associative array in the shape [ <binding> => <method> ].
    * @param mixed $default              The default value to return.
    *
    * @return mixed The first value that's not equal to the default one, the default value
    *               otherwise.
    */
    
    Defined in <ROOT>/wp-content/plugins/event-tickets/common/src/Tribe/Context.php:780
    protected func(array $functions, $default): mixed The first value that's not equal to the default one, the default value Reads the value from one or more functions until one returns a value that's not ...
    /**
    * Reads the value from one or more functions until one returns a value that's not the default one.
    *
    * @since 4.9.5
    *
    * @param array $functions An array of functions to call, in order.
    * @param mixed $default The default value to return.
    *
    * @return mixed The first value that's not equal to the default one, the default value
    *               otherwise.
    */
    
    Defined in <ROOT>/wp-content/plugins/event-tickets/common/src/Tribe/Context.php:812
    protected write_request_var($request_var, $value) Writes an altered context value to a request var.
    /**
    * Writes an altered context value to a request var.
    *
    * @since 4.9.5
    *
    * @param string $request_var The request var to write.
    * @param mixed  $value       The value to set on the request var.
    */
    
    Defined in <ROOT>/wp-content/plugins/event-tickets/common/src/Tribe/Context.php:894
    protected write_query_prop($query_prop, $value) Writes an altered context value to a global WP_Query object properties.
    /**
    * Writes an altered context value to a global WP_Query object properties.
    *
    * @since 4.9.5
    *
    * @param string $query_prop The global WP_Query object property to write.
    * @param mixed  $value      The value to set on the query property.
    */
    
    Defined in <ROOT>/wp-content/plugins/event-tickets/common/src/Tribe/Context.php:914
    protected write_query_var($query_var, $value) Writes an altered context value to a global WP_Query object query var.
    /**
    * Writes an altered context value to a global WP_Query object query var.
    *
    * @since 4.9.5
    *
    * @param string $query_var The global WP_Query query var to write.
    * @param mixed  $value     The value to set on the query var.
    */
    
    Defined in <ROOT>/wp-content/plugins/event-tickets/common/src/Tribe/Context.php:932
    protected write_tribe_option($tribe_option, $value) Writes an altered context value to a `tribe_option`.
    /**
    * Writes an altered context value to a `tribe_option`.
    *
    * @since 4.9.5
    *
    * @param string $tribe_option The `tribe_option` to write.
    * @param mixed  $value        The value to set on the `tribe_option`.
    */
    
    Defined in <ROOT>/wp-content/plugins/event-tickets/common/src/Tribe/Context.php:950
    protected write_option($option_name, $value) Writes an altered context value to an option.
    /**
    * Writes an altered context value to an option.
    *
    * @since 4.9.5
    *
    * @param string $option_name The option to write.
    * @param mixed  $value       The value to set on the option.
    */
    
    Defined in <ROOT>/wp-content/plugins/event-tickets/common/src/Tribe/Context.php:962
    protected write_transient($transient, $expiration, $value) Writes an altered context value to a transient.
    /**
    * Writes an altered context value to a transient.
    *
    * @since 4.9.5
    *
    * @param string $transient  The transient to write.
    * @param int    $expiration The transient expiration time, in seconds.
    * @param mixed  $value      The value to set on the transient.
    */
    
    Defined in <ROOT>/wp-content/plugins/event-tickets/common/src/Tribe/Context.php:975
    protected write_constant($constant, $value) Writes an altered context value to a constant.
    /**
    * Writes an altered context value to a constant.
    *
    * @since 4.9.5
    *
    * @param string $constant The constant to define.
    * @param mixed  $value    The value to set on the constant.
    */
    
    Defined in <ROOT>/wp-content/plugins/event-tickets/common/src/Tribe/Context.php:987
    protected write_global_var($global_var, $value) Writes an altered context value to a global var.
    /**
    * Writes an altered context value to a global var.
    *
    * @since 4.9.5
    *
    * @param string $global_var The global var to set.
    * @param mixed  $value      The value to set on the global_var.
    */
    
    Defined in <ROOT>/wp-content/plugins/event-tickets/common/src/Tribe/Context.php:1002
    protected write_static_prop($class, $prop, $value) Writes an altered context value setting a public static property on a class.
    /**
    * Writes an altered context value setting a public static property on a class.
    *
    * @since 4.9.5
    *
    * @param string $class The class to set the static public property on.
    * @param string $prop  The static public property to set.
    * @param mixed  $value The value to set on the property.
    */
    
    Defined in <ROOT>/wp-content/plugins/event-tickets/common/src/Tribe/Context.php:1015
    protected write_prop($binding, $prop, $value) Writes an altered context value setting a public property on a `tribe()` binding...
    /**
    * Writes an altered context value setting a public property on a `tribe()` binding.
    *
    * @since 4.9.5
    *
    * @param string $binding The container binding to set the public property on.
    * @param string $prop    The public property to set.
    * @param mixed  $value   The value to set on the property.
    */
    
    Defined in <ROOT>/wp-content/plugins/event-tickets/common/src/Tribe/Context.php:1032
    protected write_static_method($class, $method, $value) Writes an altered context value calling a public static method on a class.
    /**
    * Writes an altered context value calling a public static method on a class.
    *
    * @since 4.9.5
    *
    * @param string $class  The class to call the public static method on.
    * @param string $method The static method to call.
    * @param mixed  $value  The value to pass to the public static method.
    */
    
    Defined in <ROOT>/wp-content/plugins/event-tickets/common/src/Tribe/Context.php:1055
    protected write_method($binding, $method, $value) Writes an altered context value calling a public method on a `tribe()` binding.
    /**
    * Writes an altered context value calling a public method on a `tribe()` binding.
    *
    * @since 4.9.5
    *
    * @param string $binding The `tribe()` container binding to call the public method on.
    * @param string $method  The method to call.
    * @param mixed  $value   The value to pass to the public method.
    */
    
    Defined in <ROOT>/wp-content/plugins/event-tickets/common/src/Tribe/Context.php:1071
    protected write_func($func, $value) Writes an altered context value calling a function or closure.
    /**
    * Writes an altered context value calling a function or closure.
    *
    * @since 4.9.5
    *
    * @param callable $func  function, closure or callable to call.
    * @param mixed    $value The value to pass to the callable.
    */
    
    Defined in <ROOT>/wp-content/plugins/event-tickets/common/src/Tribe/Context.php:1086
    protected populate_locations(): void Sets some locations that can only be set at runtime.
    /**
    * Sets some locations that can only be set at runtime.
    *
    * Using a flag locations are added only once per request.
    *
    * @since 4.9.8
    */
    
    Defined in <ROOT>/wp-content/plugins/event-tickets/common/src/Tribe/Context.php:1300
  • protected static $locations :: array (57)
    post_id => array (1)
    read => array (1)
    func() Closure <ROOT>/wp-content/plugins/event-tickets/common/src/Tribe/Context/locations.php:15
    • Available methods (6)
    permalink_structure => array (1)
    read => array (1)
    option => array (1)
    0 => string (19) "permalink_structure"
    plain_permalink => array (1)
    read => array (1)
    location_func => array (2)
    0 => string (19) "permalink_structure"
    1($struct) Closure <ROOT>/wp-content/plugins/event-tickets/common/src/Tribe/Context/locations.php:29
    • Parameters
    • Available methods (6)
    posts_per_page => array (2)
    read => array (3)
    request_var => string (14) "posts_per_page"
    option => string (14) "posts_per_page"
    tribe_option => array (2)
    0 => string (14) "posts_per_page"
    1 => string (12) "postsPerPage"
    write => array (1)
    request_var => string (14) "posts_per_page"
    is_main_query => array (2)
    read => array (1)
    func() Closure <ROOT>/wp-content/plugins/event-tickets/common/src/Tribe/Context/locations.php:47
    • Available methods (6)
    write => array (1)
    func() Closure <ROOT>/wp-content/plugins/event-tickets/common/src/Tribe/Context/locations.php:62
    • Available methods (6)
    paged => array (2)
    • Table (2)
    • Contents (2)
    • request_varquery_var
      readarray (2)array (2)
      writepagedpaged
    • read => array (2)
      • Table (2)
      • Contents (2)
      • 01
        request_varpagedpage
        query_varpagedpage
      • request_var => array (2)
        0 => string (5) "paged"
        1 => string (4) "page"
        query_var => array (2)
        0 => string (5) "paged"
        1 => string (4) "page"
      write => array (2)
      request_var => string (5) "paged"
      query_var => string (5) "paged"
    page => array (2)
    • Table (2)
    • Contents (2)
    • request_varquery_var
      readarray (2)array (2)
      writepagepage
    • read => array (2)
      • Table (2)
      • Contents (2)
      • 01
        request_varpagepaged
        query_varpagepaged
      • request_var => array (2)
        0 => string (4) "page"
        1 => string (5) "paged"
        query_var => array (2)
        0 => string (4) "page"
        1 => string (5) "paged"
      write => array (2)
      request_var => string (4) "page"
      query_var => string (4) "page"
    name => array (2)
    read => array (3)
    • Table (3)
    • Contents (3)
    • 01
      request_varnamepost_name
      wp_parsednamepost_name
      query_varnamepost_name
    • request_var => array (2)
      0 => string (4) "name"
      1 => string (9) "post_name"
      wp_parsed => array (2)
      0 => string (4) "name"
      1 => string (9) "post_name"
      query_var => array (2)
      0 => string (4) "name"
      1 => string (9) "post_name"
    write => array (2)
    • Table (2)
    • Contents (2)
    • 01
      request_varnamepost_name
      query_varnamepost_name
    • request_var => array (2)
      0 => string (4) "name"
      1 => string (9) "post_name"
      query_var => array (2)
      0 => string (4) "name"
      1 => string (9) "post_name"
    post_type => array (1)
    read => array (4)
    func() Closure <ROOT>/wp-content/plugins/event-tickets/common/src/Tribe/Context/locations.php:101
    • Available methods (6)
    query_prop => string (9) "post_type"
    query_var => string (9) "post_type"
    request_var => string (9) "post_type"
    single => array (1)
    read => array (1)
    query_method => string (9) "is_single"
    taxonomy => array (1)
    read => array (3)
    query_prop => array (1)
    0 => string (8) "taxonomy"
    query_var => array (1)
    0 => string (8) "taxonomy"
    request_var => array (1)
    0 => string (8) "taxonomy"
    post_tag => array (1)
    read => array (3)
    • Table (3)
    • Contents (3)
    • 01
      query_proppost_tagtag
      query_varpost_tagtag
      request_varpost_tagtag
    • query_prop => array (2)
      0 => string (8) "post_tag"
      1 => string (3) "tag"
      query_var => array (2)
      0 => string (8) "post_tag"
      1 => string (3) "tag"
      request_var => array (2)
      0 => string (8) "post_tag"
      1 => string (3) "tag"
    bulk_edit => array (1)
    read => array (1)
    request_var => array (1)
    0 => string (9) "bulk_edit"
    inline_save => array (1)
    read => array (1)
    func => array (1)
    0() Closure <ROOT>/wp-content/plugins/event-tickets/common/src/Tribe/Context/locations.php:155
    • Available methods (6)
    event_display => array (2)
    read => array (5)
    wp_matched_query => array (1)
    0 => string (12) "eventDisplay"
    wp_parsed => array (1)
    0 => string (12) "eventDisplay"
    request_var => array (4)
    0 => string (4) "view"
    1 => string (10) "tribe_view"
    2 => string (19) "tribe_event_display"
    3 => string (12) "eventDisplay"
    query_var => string (12) "eventDisplay"
    tribe_option => string (10) "viewOption"
    write => array (2)
    request_var => array (4)
    0 => string (4) "view"
    1 => string (10) "tribe_view"
    2 => string (19) "tribe_event_display"
    3 => string (12) "eventDisplay"
    query_var => string (12) "eventDisplay"
    view => array (2)
    read => array (6)
    wp_matched_query => array (1)
    0 => string (12) "eventDisplay"
    wp_parsed => array (1)
    0 => string (12) "eventDisplay"
    request_var => array (4)
    0 => string (4) "view"
    1 => string (10) "tribe_view"
    2 => string (19) "tribe_event_display"
    3 => string (12) "eventDisplay"
    query_var => array (2)
    0 => string (10) "tribe_view"
    1 => string (12) "eventDisplay"
    func => array (1)
    0() Closure <ROOT>/wp-content/plugins/the-events-calendar/src/Tribe/Service_Providers/Context.php:76
    • Available methods (6)
    tribe_option => string (10) "viewOption"
    write => array (2)
    request_var => array (4)
    0 => string (4) "view"
    1 => string (10) "tribe_view"
    2 => string (19) "tribe_event_display"
    3 => string (12) "eventDisplay"
    query_var => array (2)
    0 => string (10) "tribe_view"
    1 => string (12) "eventDisplay"
    view_data => array (2)
    read => array (3)
    request_var => array (2)
    0 => string (15) "tribe_view_data"
    1 => string (9) "view_data"
    query_var => array (2)
    0 => string (15) "tribe_view_data"
    1 => string (9) "view_data"
    filter => string (15) "tribe_view_data"
    write => array (2)
    request_var => string (15) "tribe_view_data"
    query_var => string (15) "tribe_view_data"
    event_date => array (2)
    read => array (4)
    func => array (1)
    0() Closure <ROOT>/wp-content/plugins/the-events-calendar/src/Tribe/Service_Providers/Context.php:105
    • Available methods (6)
    request_var => array (2)
    0 => string (9) "eventDate"
    1 => string (14) "tribe-bar-date"
    query_var => string (9) "eventDate"
    wp_parsed => string (9) "eventDate"
    write => array (2)
    request_var => array (2)
    0 => string (9) "eventDate"
    1 => string (14) "tribe-bar-date"
    query_var => string (9) "eventDate"
    event_sequence => array (2)
    • Table (2)
    • Contents (2)
    • request_varquery_var
      readeventSequenceeventSequence
      writeeventSequenceeventSequence
    • read => array (2)
      request_var => string (13) "eventSequence"
      query_var => string (13) "eventSequence"
      write => array (2)
      request_var => string (13) "eventSequence"
      query_var => string (13) "eventSequence"
    ical => array (2)
    • Table (2)
    • Contents (2)
    • request_varquery_var
      readicalical
      writeicalical
    • read => array (2)
      request_var => string (4) "ical"
      query_var => string (4) "ical"
      write => array (2)
      request_var => string (4) "ical"
      query_var => string (4) "ical"
    start_date => array (2)
    • Table (2)
    • Contents (2)
    • request_varquery_var
      readstart_datestart_date
      writestart_datestart_date
    • read => array (2)
      request_var => string (10) "start_date"
      query_var => string (10) "start_date"
      write => array (2)
      request_var => string (10) "start_date"
      query_var => string (10) "start_date"
    end_date => array (2)
    • Table (2)
    • Contents (2)
    • request_varquery_var
      readend_dateend_date
      writeend_dateend_date
    • read => array (2)
      request_var => string (8) "end_date"
      query_var => string (8) "end_date"
      write => array (2)
      request_var => string (8) "end_date"
      query_var => string (8) "end_date"
    featured => array (2)
    read => array (3)
    request_var => string (8) "featured"
    query_var => string (8) "featured"
    wp_matched_query => string (8) "featured"
    write => array (2)
    request_var => string (8) "featured"
    query_var => string (8) "featured"
    tribe_events_cat => array (2)
    • Table (2)
    • Contents (2)
    • request_varquery_var
      readtribe_events_cattribe_events_cat
      writetribe_events_cattribe_events_cat
    • read => array (2)
      request_var => string (16) "tribe_events_cat"
      query_var => string (16) "tribe_events_cat"
      write => array (2)
      request_var => string (16) "tribe_events_cat"
      query_var => string (16) "tribe_events_cat"
    remove_date_filters => array (2)
    • Table (2)
    • Contents (2)
    • request_varquery_var
      readtribe_remove_date_filterstribe_remove_date_filters
      writetribe_remove_date_filterstribe_remove_date_filters
    • read => array (2)
      request_var => string (25) "tribe_remove_date_filters"
      query_var => string (25) "tribe_remove_date_filters"
      write => array (2)
      request_var => string (25) "tribe_remove_date_filters"
      query_var => string (25) "tribe_remove_date_filters"
    event_display_mode => array (1)
    read => array (3)
    request_var => array (4)
    0 => string (4) "view"
    1 => string (10) "tribe_view"
    2 => string (19) "tribe_event_display"
    3 => string (12) "eventDisplay"
    wp_parsed => array (2)
    0 => string (12) "eventDisplay"
    1 => string (19) "tribe_event_display"
    query_var => array (2)
    0 => string (12) "eventDisplay"
    1 => string (19) "tribe_event_display"
    tribe_event_display => array (2)
    read => array (3)
    request_var => array (1)
    0 => string (19) "tribe_event_display"
    wp_parsed => array (1)
    0 => string (19) "tribe_event_display"
    query_var => array (1)
    0 => string (19) "tribe_event_display"
    write => array (2)
    request_var => array (2)
    0 => string (19) "tribe_event_display"
    1 => string (18) "event_display_mode"
    query_var => array (1)
    0 => string (19) "tribe_event_display"
    keyword => array (1)
    read => array (3)
    func => array (1)
    0() Closure <ROOT>/wp-content/plugins/the-events-calendar/src/Tribe/Service_Providers/Context.php:219
    • Available methods (6)
    request_var => array (3)
    0 => string (1) "s"
    1 => string (6) "search"
    2 => string (16) "tribe-bar-search"
    location_func => array (2)
    0 => string (9) "view_data"
    1($data) Closure <ROOT>/wp-content/plugins/the-events-calendar/src/Tribe/Service_Providers/Context.php:226
    • Parameters
    • Available methods (6)
    events_per_page => array (2)
    read => array (3)
    request_var => string (14) "posts_per_page"
    tribe_option => array (2)
    0 => string (14) "posts_per_page"
    1 => string (12) "postsPerPage"
    option => string (14) "posts_per_page"
    write => array (2)
    request_var => string (14) "posts_per_page"
    tribe_option => string (12) "postsPerPage"
    month_posts_per_page => array (2)
    read => array (1)
    tribe_option => string (16) "monthEventAmount"
    • Base64
    • base64_decode(tribe_option) binary string (12)
    write => array (1)
    tribe_option => string (16) "monthEventAmount"
    • Base64
    • base64_decode(tribe_option) binary string (12)
    today => array (1)
    read => array (1)
    func() Closure <ROOT>/wp-content/plugins/the-events-calendar/src/Tribe/Service_Providers/Context.php:257
    • Available methods (6)
    now => array (1)
    read => array (1)
    func() Closure <ROOT>/wp-content/plugins/the-events-calendar/src/Tribe/Service_Providers/Context.php:266
    • Available methods (6)
    start_of_week => array (2)
    read => array (1)
    option => string (13) "start_of_week"
    write => array (1)
    option => string (13) "start_of_week"
    tec_post_type => array (1)
    read => array (2)
    func => array (1)
    0() Closure <ROOT>/wp-content/plugins/the-events-calendar/src/Tribe/Service_Providers/Context.php:278
    • Available methods (6)
    location_func => array (2)
    0 => string (9) "post_type"
    1($post_type) Closure <ROOT>/wp-content/plugins/the-events-calendar/src/Tribe/Service_Providers/Context.php:291
    • Parameters
    • Available methods (6)
    event_post_type => array (1)
    read => array (2)
    func => array (1)
    0() Closure <ROOT>/wp-content/plugins/the-events-calendar/src/Tribe/Service_Providers/Context.php:306
    • Available methods (6)
    location_func => array (2)
    0 => string (9) "post_type"
    1($post_type) Closure <ROOT>/wp-content/plugins/the-events-calendar/src/Tribe/Service_Providers/Context.php:312
    • Parameters
    • Available methods (6)
    venue_post_type => array (1)
    read => array (2)
    func => array (1)
    0() Closure <ROOT>/wp-content/plugins/the-events-calendar/src/Tribe/Service_Providers/Context.php:321
    • Available methods (6)
    location_func => array (2)
    0 => string (9) "post_type"
    1($post_type) Closure <ROOT>/wp-content/plugins/the-events-calendar/src/Tribe/Service_Providers/Context.php:327
    • Parameters
    • Available methods (6)
    organizer_post_type => array (1)
    read => array (2)
    func => array (1)
    0() Closure <ROOT>/wp-content/plugins/the-events-calendar/src/Tribe/Service_Providers/Context.php:336
    • Available methods (6)
    location_func => array (2)
    0 => string (9) "post_type"
    1($post_type) Closure <ROOT>/wp-content/plugins/the-events-calendar/src/Tribe/Service_Providers/Context.php:342
    • Parameters
    • Available methods (6)
    event_category => array (1)
    read => array (3)
    query_prop => array (1)
    0 => string (16) "tribe_events_cat"
    query_var => array (1)
    0 => string (16) "tribe_events_cat"
    request_var => array (1)
    0 => string (16) "tribe_events_cat"
    view_url => array (1)
    read => array (2)
    func => array (1)
    0() Closure <ROOT>/wp-content/plugins/the-events-calendar/src/Tribe/Service_Providers/Context.php:358
    • Available methods (6)
    location_func => array (2)
    0 => string (9) "view_data"
    1($data) Closure <ROOT>/wp-content/plugins/the-events-calendar/src/Tribe/Service_Providers/Context.php:365
    • Parameters
    • Available methods (6)
    view_prev_url => array (1)
    read => array (1)
    func => array (2)
    0() Closure <ROOT>/wp-content/plugins/the-events-calendar/src/Tribe/Service_Providers/Context.php:378
    • Available methods (6)
    1() Closure <ROOT>/wp-content/plugins/the-events-calendar/src/Tribe/Service_Providers/Context.php:381
    • Available methods (6)
    view_request => array (1)
    read => array (4)
    wp_matched_query => array (1)
    0 => string (12) "eventDisplay"
    wp_parsed => array (1)
    0 => string (12) "eventDisplay"
    request_var => array (4)
    0 => string (4) "view"
    1 => string (10) "tribe_view"
    2 => string (19) "tribe_event_display"
    3 => string (12) "eventDisplay"
    query_var => array (2)
    0 => string (10) "tribe_view"
    1 => string (12) "eventDisplay"
    latest_event_date => array (2)
    read => array (1)
    tribe_option => array (1)
    0 => string (11) "latest_date"
    write => array (1)
    tribe_option => array (1)
    0 => string (11) "latest_date"
    earliest_event_date => array (2)
    read => array (1)
    tribe_option => array (1)
    0 => string (13) "earliest_date"
    write => array (1)
    tribe_option => array (1)
    0 => string (13) "earliest_date"
    events_status_data => array (1)
    read => array (1)
    request_var => array (1)
    0 => string (19) "tribe-events-status"
    tec_automator_admin_request => array (1)
    read => array (1)
    request_var => array (2)
    0 => string (23) "event_automator_request"
    1 => string (5) "state"
    shortcode => array (1)
    read => array (2)
    request_var => string (9) "shortcode"
    location_func => array (2)
    0 => string (13) "view_prev_url"
    1($url) Closure <ROOT>/wp-content/plugins/events-calendar-pro/src/Tribe/Views/V2/Shortcodes/Tribe_Events.php:785
    • Parameters
    • Available methods (6)
    hide_subsequent_recurrences => array (2)
    read => array (5)
    wp_matched_query => array (1)
    0 => string (27) "hide_subsequent_recurrences"
    wp_parsed => array (1)
    0 => string (27) "hide_subsequent_recurrences"
    request_var => array (1)
    0 => string (27) "hide_subsequent_recurrences"
    query_var => array (1)
    0 => string (27) "hide_subsequent_recurrences"
    tribe_option => array (1)
    0 => string (32) "hideSubsequentRecurrencesDefault"
    • Base64
    • base64_decode(0) binary string (24)
    write => array (2)
    request_var => array (1)
    0 => string (27) "hide_subsequent_recurrences"
    query_var => array (1)
    0 => string (27) "hide_subsequent_recurrences"
    geoloc_search => array (1)
    read => array (3)
    request_var => array (2)
    0 => string (18) "tribe-bar-location"
    1 => string (21) "tribe_geoloc_location"
    query_var => array (1)
    0 => string (21) "tribe_geoloc_location"
    location_func => array (2)
    0 => string (9) "view_data"
    1($view_data) Closure <ROOT>/wp-content/plugins/events-calendar-pro/src/Tribe/Service_Providers/Context.php:98
    • Uses
    • Parameters
    • Available methods (6)
    geoloc_lat => array (1)
    read => array (2)
    request_var => array (2)
    0 => string (20) "tribe-bar-geoloc-lat"
    1 => string (16) "tribe_geoloc_lat"
    query_var => array (1)
    0 => string (16) "tribe_geoloc_lat"
    geoloc_lng => array (1)
    read => array (2)
    request_var => array (2)
    0 => string (20) "tribe-bar-geoloc-lat"
    1 => string (16) "tribe_geoloc_lat"
    query_var => array (1)
    0 => string (16) "tribe_geoloc_lat"
    event_manager => array (1)
    read => array (1)
    func() Closure <ROOT>/wp-content/plugins/events-calendar-pro/src/Tribe/Service_Providers/Context.php:76
    • Available methods (6)
    related_series => array (1)
    read => array (1)
    func() Closure <ROOT>/wp-content/plugins/events-calendar-pro/src/Events_Pro/Custom_Tables/V1/Templates/Series_Filters.php:72
    • Available methods (6)
    tec_organizer_category => array (1)
    read => array (3)
    query_prop => array (1)
    0 => string (22) "tec_organizer_category"
    query_var => array (1)
    0 => string (22) "tec_organizer_category"
    request_var => array (1)
    0 => string (22) "tec_organizer_category"
    tec_venue_category => array (1)
    read => array (3)
    query_prop => array (1)
    0 => string (18) "tec_venue_category"
    query_var => array (1)
    0 => string (18) "tec_venue_category"
    request_var => array (1)
    0 => string (18) "tec_venue_category"
    events_virtual_data => array (1)
    read => array (1)
    request_var => array (1)
    0 => string (20) "tribe-events-virtual"
    events_virtual_request => array (1)
    read => array (1)
    request_var => array (2)
    0 => string (10) "ev_request"
    1 => string (5) "state"
    virtual => array (1)
    read => array (2)
    request_var => array (1)
    0 => string (7) "virtual"
    query_var => array (1)
    0 => string (7) "virtual"
    protected static $associative_locations :: array (5)
    0 => string (9) "transient"
    1 => string (6) "method"
    2 => string (13) "static_method"
    3 => string (4) "prop"
    4 => string (11) "static_prop"
    protected static $did_populate_locations :: boolean true
    const NOT_FOUND :: string (13) "__not_found__"
    \Tribe__Context::NOT_FOUND
    const REQUEST_VAR :: string (11) "request_var"
    \Tribe__Context::REQUEST_VAR
    const TRIBE_OPTION :: string (12) "tribe_option"
    \Tribe__Context::TRIBE_OPTION
    const OPTION :: string (6) "option"
    \Tribe__Context::OPTION
    const TRANSIENT :: string (9) "transient"
    \Tribe__Context::TRANSIENT
    const QUERY_VAR :: string (9) "query_var"
    \Tribe__Context::QUERY_VAR
    const QUERY_PROP :: string (10) "query_prop"
    \Tribe__Context::QUERY_PROP
    const QUERY_METHOD :: string (12) "query_method"
    \Tribe__Context::QUERY_METHOD
    const CONSTANT :: string (8) "constant"
    \Tribe__Context::CONSTANT
    const STATIC_PROP :: string (11) "static_prop"
    \Tribe__Context::STATIC_PROP
    const PROP :: string (4) "prop"
    \Tribe__Context::PROP
    const STATIC_METHOD :: string (13) "static_method"
    \Tribe__Context::STATIC_METHOD
    const METHOD :: string (6) "method"
    \Tribe__Context::METHOD
    const FUNC :: string (4) "func"
    \Tribe__Context::FUNC
    const GLOBAL_VAR :: string (10) "global_var"
    \Tribe__Context::GLOBAL_VAR
    const FILTER :: string (6) "filter"
    \Tribe__Context::FILTER
    const WP_PARSED :: string (9) "wp_parsed"
    \Tribe__Context::WP_PARSED
    const WP_MATCHED_QUERY :: string (16) "wp_matched_query"
    \Tribe__Context::WP_MATCHED_QUERY
    const LOCATION_FUNC :: string (13) "location_func"
    \Tribe__Context::LOCATION_FUNC
string (5) "venue"
boolean false
string (49) "tribe_events_views_v2_should_hijack_page_template"
string (53) "DeWittePrins\CoreFunctionality\TEC\should_hijack_post"
string (14) "$should_hijack"
boolean false
string (20) "is_tec_pro_archive()"
boolean false
string (15) "tribe_is_week()"
boolean false
string (14) "tribe_is_map()"
boolean false
string (16) "tribe_is_photo()"
boolean false
string (26) "tribe_is_recurring_event()"
boolean false
string (19) "tec_is_venue_view()"
boolean false
string (23) "tec_is_organizer_view()"
boolean false
string (19) "tec_is_venue_view()"
boolean false
string (23) "tec_is_organizer_view()"
boolean false

Engelen Reading

More Content

Schrijf je in

Schrijf je meteen even in en laat je inspireren door meeslepende verhalen, ontwikkel je intuïtieve gaven en blijf automatisch op de hoogte.

Je bent succesvol ingeschreven!