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