domain_content_extra_fields($type_name = NULL)Implement hook_content_extra_fields()
CCK hook to allow sorting of the domain settings field.
./domain.module, line 2358
<?php
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,
),
);
}
}
?>