Automattic\WooCommerce\Admin\Notes

Note::get_contentpublicWC 1.0

Get note content.

Method of the class: Note{}

No Hooks.

Returns

String.

Usage

$Note = new Note();
$Note->get_content( $context );
$context(string)
What the value is for. Valid values are 'view' and 'edit'.
Default: 'view'

Note::get_content() code WC 10.6.2

public function get_content( $context = 'view' ) {
	return $this->get_prop( 'content', $context );
}