WP_List_Table::__call()publicWP 4.0.0

Makes private/protected methods readable for backward compatibility.

Method of the class: WP_List_Table{}

No Hooks.

Return

Mixed|true|false. Return value of the callback, false otherwise.

Usage

$WP_List_Table = new WP_List_Table();
$WP_List_Table->__call( $name, $arguments );
$name(string) (required)
Method to call.
$arguments(array) (required)
Arguments to pass when calling.

Changelog

Since 4.0.0 Introduced.

WP_List_Table::__call() code WP 6.5.2

public function __call( $name, $arguments ) {
	if ( in_array( $name, $this->compat_methods, true ) ) {
		return $this->$name( ...$arguments );
	}
	return false;
}