Yoast\WP\Lib
Model::get
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() Model::get Yoast 26.9
public function get( $property ) {
return $this->orm->get( $property );
}