You appear to be a bot. Output may be restricted
Description
Make private/protected methods readable for backwards compatibility.
Usage
$mixed|bool = BW_List_Table::__call( $name, $arguments );
Parameters
- $name
- ( callable ) required – Method to call.
- $arguments
- ( array ) required – Arguments to pass when calling.
Returns
mixed|bool Return value of the callback, false otherwise.Source
File name: oik/admin/class-bw-list-table.phpLines:
1 to 6 of 6
public function __call( $name, $arguments ) { if ( in_array( $name, $this->compat_methods ) ) { return call_user_func_array( array( $this, $name ), $arguments ); } return false; }View on GitHub View on Trac