Inventory_Presser_Admin_Location_Meta::generate_location_uid( string $salt_string = null )
generate_location_uid
Contents
Description Description
Creates a unique ID for a phone number or set of hours.
Parameters Parameters
- $salt_string
-
(string) (Optional) Any string to be combined with rand() as the value to pass to md5()
Default value: null
Return Return
(string) A string of 12 characters.
Source Source
File: includes/admin/class-admin-location-meta.php
function generate_location_uid( $salt_string = null ) { return substr( md5( strval( rand() ) . $salt_string ), 0, 12 ); }
Expand full source code Collapse full source code View on Github