You are here

function domain_path_content_extra_fields in Domain Path 6

Implement hook_content_extra_fields()

CCK hook to allow sorting of the domain settings field.

File

./domain_path.module, line 311
Path alias handling for multiple domains.

Code

function domain_path_content_extra_fields($type_name = NULL) {
  if (!empty($type_name)) {
    return array(
      'domain_path' => array(
        'label' => t('Domain path'),
        'description' => t('Domain-specific path settings.'),
        'weight' => 31,
      ),
    );
  }
}