LLMS_Database_Query::setup_args()

Setup arguments prior to a query


Description Description


Return Return

(void)


Top ↑

Source Source

File: includes/abstracts/abstract.llms.database.query.php

	protected function setup_args() {

		$this->arguments = wp_parse_args( $this->arguments_original, $this->arguments_default );

		$this->parse_args();

		foreach ( $this->arguments as $arg => $val ) {

			$this->set( $arg, $val );

		}

	}

Top ↑

Changelog Changelog

Changelog
Version Description
3.8.0 Introduced.


Top ↑

User Contributed Notes User Contributed Notes

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