You are here

function filebrowser_filebrowser_presentations in Filebrowser 7.4

Same name and namespace in other branches
  1. 8 filebrowser.module \filebrowser_filebrowser_presentations()
  2. 6.2 filebrowser.module \filebrowser_filebrowser_presentations()
  3. 7.2 filebrowser.module \filebrowser_filebrowser_presentations()
  4. 7.3 filebrowser.module \filebrowser_filebrowser_presentations()

hook_filebrowser_presentation

File

./filebrowser.module, line 1265

Code

function filebrowser_filebrowser_presentations() {
  return array(
    'list-view' => array(
      'title' => t('Present this folder as a list-view'),
      'theme' => 'dir_listing_list_view',
    ),
    'icon-view' => array(
      'title' => t('Present this folder as an icon-view'),
      'theme' => 'dir_listing_icon_view',
    ),
  );
}