Yoast\WP\Lib
Abstract_Main::__isset() public Yoast 1.0
Checks if the given property exists as a surface.
{} Это метод класса: Abstract_Main{}
Хуков нет.
Возвращает
true/false. True when property is set.
Использование
$Abstract_Main = new Abstract_Main(); $Abstract_Main->__isset( $property );
- $property(строка) (обязательный)
- The property to retrieve.
Код Abstract_Main::__isset() Abstract Main:: isset Yoast 15.9
public function __isset( $property ) {
return isset( $this->surfaces[ $property ] );
}