LLMS_Query_Quiz_Attempt::preprare_query()

Prepare the SQL for the query.


Return Return

(string)


Top ↑

Source Source

File: includes/class.llms.query.quiz.attempt.php

	 * @return string
	 */
	protected function prepare_query() {

		global $wpdb;

		$from  = "FROM {$wpdb->prefix}lifterlms_quiz_attempts qa";
		$joins = $this->sql_joins();
		$where = $this->sql_where();

		if ( $this->get( 'count_only' ) ) {

Top ↑

Changelog Changelog

Changelog
Version Description
3.16.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

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