Automattic\WooCommerce\Admin\Notes
Note::get_name
Get note name.
Метод класса: Note{}
Хуков нет.
Возвращает
Строку.
Использование
$Note = new Note(); $Note->get_name( $context );
- $context(строка)
- What the value is for. Valid values are
'view'and'edit'.
По умолчанию:'view'
Код Note::get_name() Note::get name WC 10.5.2
public function get_name( $context = 'view' ) {
return $this->get_prop( 'name', $context );
}