InstructorsList::__construct()


Source

File: classes/InstructorsList.php

	function __construct() {
		global $status, $page;

		//Set parent defaults
		parent::__construct( array(
			'singular' => 'instructor',     //singular name of the listed records
			'plural'   => 'instructors',    //plural name of the listed records
			'ajax'     => false        //does this table support ajax?
		) );

		$this->process_bulk_action();
	}