You are here

function filedepot_node_info in filedepot 7

Same name and namespace in other branches
  1. 6 filedepot.module \filedepot_node_info()

Implementation of hook_node_info().

File

./filedepot.module, line 778
filedepot.module Filedepot: File Management Module developed by Nextide www.nextide.ca Full featured document managment module with a desktop application feel. Integrated Organic Group, Role and User permissions to secure folders, automated…

Code

function filedepot_node_info() {
  return array(
    'filedepot_folder' => array(
      'name' => t('Filedepot Folder'),
      'base' => 'filedepot',
      'description' => t('Folder for storing documents'),
      'has_title' => TRUE,
      'title_label' => t('Folder Name'),
      'locked' => FALSE,
    ),
  );
}