function pathauto_entity_alias_settings in Pathauto Entity 7
All modules to add URL Settings to Entity form.
1 call to pathauto_entity_alias_settings()
- pathauto_entity_form_alter in ./
pathauto_entity.module - Implements hook_form_alter().
File
- ./
pathauto_entity.module, line 362 - Implements custom entity type support for Pathauto module.
Code
function pathauto_entity_alias_settings($entity_type) {
$entity_forms = array();
// Allow for users to add form_ids
drupal_alter('pathauto_entity_alias_settings', $entity_forms);
return empty($entity_forms[$entity_type]) ? FALSE : $entity_forms[$entity_type];
}