ActionScheduler_Abstract_ListTable::get_search_box_placeholder()protectedWC 1.0

Get the text to display in the search box on the list table.

Method of the class: ActionScheduler_Abstract_ListTable{}

No Hooks.

Return

null. Nothing (null).

Usage

// protected - for code of main (parent) or child class
$result = $this->get_search_box_placeholder();

ActionScheduler_Abstract_ListTable::get_search_box_placeholder() code WC 8.7.0

protected function get_search_box_placeholder() {
	return esc_html__( 'Search', 'woocommerce' );
}