function styleguide_machine_name_exists in Style Guide 7
Provide results for the machine_name field's duplication check.
Parameters
$value: The submitted value.
Return value
The check isn't necessary here, so always return FALSE.
1 string reference to 'styleguide_machine_name_exists'
- styleguide_form in ./styleguide.module 
- Sample form, showing all elements.
File
- ./styleguide.module, line 451 
Code
function styleguide_machine_name_exists($value) {
  return FALSE;
}