WC_Admin_Webhooks::page_output()
Page output.
{} It's a method of the class: WC_Admin_Webhooks{}
No Hooks.
Return
null
. Nothing.
Usage
$result = WC_Admin_Webhooks::page_output();
Code of WC_Admin_Webhooks::page_output() WC Admin Webhooks::page output WC 6.7.0
public static function page_output() { // Hide the save button. $GLOBALS['hide_save_button'] = true; if ( isset( $_GET['edit-webhook'] ) ) { // WPCS: input var okay, CSRF ok. $webhook_id = absint( $_GET['edit-webhook'] ); // WPCS: input var okay, CSRF ok. $webhook = new WC_Webhook( $webhook_id ); include __DIR__ . '/settings/views/html-webhooks-edit.php'; return; } self::table_list_output(); }