WithdrawalsList::__construct()


Source

File: classes/WithdrawalsList.php

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

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

		$this->process_bulk_action();
	}