ActionScheduler_DBStore::hash_args()protectedWC 1.0

Generate a hash from json_encoded $args using MD5 as this isn't for security.

Method of the class: ActionScheduler_DBStore{}

No Hooks.

Return

String.

Usage

// protected - for code of main (parent) or child class
$result = $this->hash_args( $args );
$args(string) (required)
JSON encoded action args.

ActionScheduler_DBStore::hash_args() code WC 8.7.0

protected function hash_args( $args ) {
	return md5( $args );
}