function filedepot_node_info in filedepot 6
Same name and namespace in other branches
- 7 filedepot.module \filedepot_node_info()
Implementation of hook_node_info().
File
- ./
filedepot.module, line 454 - filedepot.module Filedepot: File Management Module developed by Nextide www.nextide.ca Full featured document managment module with a desktop application feel. Integrated role and user permissions to secure folders, automated notifications, Tag Cloud…
Code
function filedepot_node_info() {
return array(
'filedepot_folder' => array(
'name' => t('Filedepot Folder'),
'module' => 'filedepot',
'description' => t('Folder for storing documents'),
'has_title' => TRUE,
'title_label' => t('Folder Name'),
'has_body' => TRUE,
'body_label' => t('Folder Description'),
'locked' => FALSE,
),
);
}