function domain_content_extra_fields in Domain Access 6.2
Implement hook_content_extra_fields()
CCK hook to allow sorting of the domain settings field.
File
- ./
domain.module, line 2715 - Core module functions for the Domain Access suite.
Code
function domain_content_extra_fields($type_name = NULL) {
if (!empty($type_name)) {
return array(
'domain' => array(
'label' => t('Domain access'),
'description' => t('Domain-specific settings for posts.'),
'weight' => 1,
),
);
}
}