function filedepot_delete in filedepot 6
Implementation of hook_delete().
File
- ./
filedepot.module, line 623 - 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_delete($node) {
$filedepot = filedepot_filedepot();
$filedepot
->deleteFolder($node->nid);
}