ActionScheduler_Abstract_ListTable::get_request_status()
Return the status filter for this request, if any.
Method of the class: ActionScheduler_Abstract_ListTable{}
No Hooks.
Return
String
.
Usage
// protected - for code of main (parent) or child class $result = $this->get_request_status();
ActionScheduler_Abstract_ListTable::get_request_status() ActionScheduler Abstract ListTable::get request status code WC 9.5.1
protected function get_request_status() { $status = ( ! empty( $_GET['status'] ) ) ? sanitize_text_field( wp_unslash( $_GET['status'] ) ) : ''; //phpcs:ignore WordPress.Security.NonceVerification.Recommended return $status; }