You are here

function filedepot_nexcloud in filedepot 7

Same name and namespace in other branches
  1. 6 filedepot.module \filedepot_nexcloud()
11 calls to filedepot_nexcloud()
filedepot::approveFileSubmission in ./filedepot.class.php
filedepotAjaxServer_loadFileDetails in ./lib-ajaxserver.php
filedepot_dispatcher in ./ajaxserver.php
filedepot_displayTagSearchListing in ./lib-ajaxserver.php
filedepot_file_delete in ./filedepot.module
Implements hook_file_delete().

... See full list

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;
}