WP_List_Table::__isset() – Make private properties checkable for backward compatibility.

You appear to be a bot. Output may be restricted

Description

Makes private properties checkable for backward compatibility.

Usage

$bool = WP_List_Table::__isset( $name );

Parameters

$name
( string ) required – Property to check if set.

Returns

bool Whether the property is a back-compat property and it is set.

Source

File name: wordpress/wp-admin/includes/class-wp-list-table.php
Lines:

1 to 7 of 7
  public function __isset( $name ) {
    if ( in_array( $name, $this->compat_fields, true ) ) {
      return isset( $this->$name );
    }

    return false;
  }
 

 View on GitHub View on Trac