Yoast\WP\Lib

Model::get()publicYoast 1.0

Getter method, allows $model->get('property') access to data

Метод класса: Model{}

Хуков нет.

Возвращает

Строку. The value of a property.

Использование

$Model = new Model();
$Model->get( $property );
$property(строка) (обязательный)
The property to get.

Код Model::get() Yoast 22.3

public function get( $property ) {
	return $this->orm->get( $property );
}