You are here

function filedepot_nexcloud in filedepot 6

Same name and namespace in other branches
  1. 7 filedepot.module \filedepot_nexcloud()
11 calls to filedepot_nexcloud()
filedepot::approveFileSubmission in ./filedepot.class.php
filedepot::deleteFile in ./filedepot.class.php
filedepot::saveFile in ./filedepot.class.php
filedepot::saveVersion in ./filedepot.class.php
filedepotAjaxServer_loadFileDetails in ./lib-ajaxserver.php

... See full list

1 string reference to 'filedepot_nexcloud'
filedepot::deleteFile in ./filedepot.class.php

File

./filedepot.module, line 46
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_nexcloud() {
  static $nexcloud;
  if (!isset($nexcloud)) {
    module_load_include('php', 'filedepot', 'nexcloud.class');
    $nexcloud = new filedepotTagCloud();
  }
  return $nexcloud;
}