function filedepot_nexcloud in filedepot 7
Same name and namespace in other branches
- 6 filedepot.module \filedepot_nexcloud()
11 calls to filedepot_nexcloud()
1 string reference to 'filedepot_nexcloud'
- filedepot_file_delete in ./
filedepot.module - Implements hook_file_delete().
File
- ./
filedepot.module, line 90 - 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_nexcloud() {
static $nexcloud;
if (!isset($nexcloud)) {
module_load_include('php', 'filedepot', 'nexcloud.class');
$nexcloud = new filedepotTagCloud();
}
return $nexcloud;
}