WC_Settings_Page::get_own_sections()
Get own sections for this page. Derived classes should override this method if they define sections. There should always be one default section with an empty string as identifier.
Example: return array( '' => __( 'General', 'woocommerce' ), 'foobars' => __( 'Foos & Bars', 'woocommerce' ), );
Method of the class: WC_Settings_Page{}
No Hooks.
Return
Array
. An associative array where keys are section identifiers and the values are translated section names.
Usage
// protected - for code of main (parent) or child class $result = $this->get_own_sections();
WC_Settings_Page::get_own_sections() WC Settings Page::get own sections code WC 9.8.2
protected function get_own_sections() { return array( '' => __( 'General', 'woocommerce' ) ); }