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