ActionScheduler_DBStore::get_args_for_query
Get action args query param value from action args.
Method of the class: ActionScheduler_DBStore{}
No Hooks.
Returns
String.
Usage
// protected - for code of main (parent) or child class $result = $this->get_args_for_query( $args );
- $args(array) (required)
- Action args.
ActionScheduler_DBStore::get_args_for_query() ActionScheduler DBStore::get args for query code WC 10.8.1
protected function get_args_for_query( $args ) {
$encoded = wp_json_encode( $args );
if ( strlen( $encoded ) <= static::$max_index_length ) {
return $encoded;
}
return $this->hash_args( $encoded );
}