WithdrawalsList::__construct()
Source
File: classes/WithdrawalsList.php
15 16 17 18 19 20 21 22 23 24 25 26 | 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(); } |