function hosting_package_node_info in Hostmaster (Aegir) 6
Implementation of hook_node_info().
File
- modules/
hosting/ package/ hosting_package.module, line 23
Code
function hosting_package_node_info() {
#package management
$types["package"] = array(
"type" => 'package',
"name" => 'Package',
"module" => 'hosting_package',
"has_title" => FALSE,
"title_label" => '',
"description" => hosting_node_help("package"),
"has_body" => 0,
"body_label" => '',
"min_word_count" => 0,
);
return $types;
}