LLMS_Table_StudentManagement::set_args()

Define the structure of arguments used to pass to the get_results method


Return Return

(array)


Top ↑

Source Source

File: includes/admin/post-types/tables/class.llms.table.student.management.php

	public function set_args() {

		if ( ! $this->post_id ) {
			global $post;
			$this->post_id = ! empty( $post->ID ) ? $post->ID : null;
		}

		return array(
			'post_id' => $this->post_id,
		);

	}

Top ↑

Changelog Changelog

Changelog
Version Description
3.4.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

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