LLMS_Database_Query::__construct( array $args = array() )

Constructor


Description Description


Parameters Parameters

$args

(array) (Optional) query arguments

Default value: array()


Top ↑

Source Source

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

	public function __construct( $args = array() ) {

		$this->arguments_original = $args;
		$this->arguments_default = $this->get_default_args();

		$this->setup_args();

		$this->query();

	}

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.