LLMS_Events_Query::get_default_args()

Retrieve default arguments for a query


Return Return

(array)


Top ↑

Source Source

File: includes/class-llms-events-query.php

	protected function get_default_args() {

		$args = array(
			'actor'         => array(),
			'actor_not_in'  => array(),
			'date_after'    => '',
			'date_before'   => '',
			'exclude'       => array(),
			'include'       => array(),
			'object_type'   => '',
			'object'        => array(),
			'object_not_in' => array(),
			'event_type'    => '',
			'event_action'  => '',
			'sort'          => array(
				'date' => 'DESC',
			),
		);

		$args = wp_parse_args( $args, parent::get_default_args() );

		if ( $args['suppress_filters'] ) {
			return $args;
		}

		/**
		 * Filters the events query default args
		 *
		 * @since 3.36.0
		 *
		 * @param array             $args         Array of default arguments to set up the query with.
		 * @param LLMS_Events_Query $events_query Instance of LLMS_Events_Query.
		 */
		return apply_filters( 'llms_events_query_default_args', $args, $this );

	}


Top ↑

Changelog Changelog

Changelog
Version Description
4.7.0 Drop usage of this->get_filter( 'default_args' ) in favor of 'llms_events_query_default_args'.
3.36.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.