function webfm_help in Web File Manager 5.2
Same name and namespace in other branches
- 5 webfm.module \webfm_help()
Implementation of hook_help().
File
- ./
webfm.module, line 18
Code
function webfm_help($section) {
switch ($section) {
case 'admin/help#webfm':
$output = '<p>' . t('Webfm is a hierarchical file system manager.
Webfm does not use a flat file system (a single directory indexed by a
database). Webfm allows users to arrange files on the server in the
same way they do on their local storage drives. This ability to
heirarchically arrange files greatly enhances the managability of large
collections of data.') . '</p>' . '<p>' . t('Note that webfm uses <b>includes/file.inc</b> which manages the
file system path. The <b>Root Directory</b> and <b>Ftp root directory
</b> paths are relative to the file system path set at %file-sys and
must be prefaced with a "/".', array(
'%file-sys' => url('admin/settings/file-system'),
)) . '</p>' . '<p>' . t('Webfm uses ajax and javascript extensively to provide
application intensive functionality such as file/dir move and ordering
of attachments via drag-and-drop. The context menuing provided by the
right mouse button click provides context sensitive menus for user
selection. Javascript must be enabled for webfm to function.') . '</p>' . '<p>' . t('Webfm presents left hand blocks to represent directory
trees and a right hand block to list the contents of the current
directory. The upper left block represents the directory structure of
file data enumerated in the database and available to the site for
metadata/attachment to content.') . '</p>' . '<p>' . t('File uploads via the UI that overwrite existing files present
version options to allow the user to transfer the existing fid and
metadata to the newer file. This allows content to be updated
such that attachments and metadata are preserved.') . '</p>';
return $output;
case 'admin/modules#description':
return t('Enable the Web File Manager.');
}
}