You appear to be a bot. Output may be restricted
Description
Make private properties readable for backwards compatibility.
Usage
$mixed = BW_List_Table::__get( $name );
Parameters
- $name
- ( string ) required – Property to get.
Returns
mixed Property.Source
File name: oik/admin/class-bw-list-table.phpLines:
1 to 5 of 5
public function __get( $name ) { if ( in_array( $name, $this->compat_fields ) ) { return $this->$name; } }View on GitHub View on Trac