You are here

function filedepot_main in filedepot 6

Same name and namespace in other branches
  1. 7 filedepot.module \filedepot_main()

Implementation of hook_main().

1 string reference to 'filedepot_main'
filedepot_menu in ./filedepot.module
Implementation of hook_menu().

File

./filedepot.module, line 442
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_main($id = 0) {
  $modulepath = drupal_get_path('module', 'filedepot');
  drupal_add_css($modulepath . '/css/filedepot.css');
  drupal_add_js($modulepath . '/js/filedepotlanguage.js');
  drupal_set_breadcrumb('');
  return theme('filedepot_main_page', $id);
}