egroupware/filemanager/inc/hook_settings.inc.php
Pim Snel aad11725fc Complete restyle and almost complete rewrite of the filemanager. Please help testing there's still a lot to do but it beginning to mature ;)
When you want the old filemanager set the boolean switch "$experimental_new_code" to false in the head of index.php
See todo file for what's more to come
2003-11-22 03:05:00 +00:00

66 lines
2.1 KiB
PHP

<?php
/**************************************************************************\
* eGroupWare - Filemanager Preferences *
* http://egroupware.org *
* Modified by Pim Snel <pim@egroupware.org> *
* -------------------------------------------- *
* This program is free software; you can redistribute it and/or modify it *
* under the terms of the GNU General Public License as published by the *
* Free Software Foundation; either version 2 of the License, or (at your *
* option) *
\**************************************************************************/
//ExecMethod('filemanager.bofilemanager.check_set_default_prefs');
/*create_section('TESTING');
create_check_box('Use new experimental Filemanager?','experimental_new_code','The future filemanager, now for TESTING PURPOSES ONLY, please send bugreports');
*/
create_section('Display attributes');
$file_attributes = Array(
'name' => 'File Name',
'mime_type' => 'MIME Type',
'size' => 'Size',
'created' => 'Created',
'modified' => 'Modified',
'owner' => 'Owner',
'createdby_id' => 'Created by',
'modifiedby_id' => 'Created by',
'modifiedby_id' => 'Modified by',
'app' => 'Application',
'comment' => 'Comment',
'version' => 'Version'
);
while (list ($key, $value) = each ($file_attributes))
{
create_check_box($value,$key);
}
create_section('Other settings');
$other_checkboxes = array (
"viewinnewwin" => "View documents in new window",
"viewonserver" => "View documents on server (if available)",
"viewtextplain" => "Unknown MIME-type defaults to text/plain when viewing",
"dotdot" => "Show ..",
"dotfiles" => "Show .files",
);
while (list ($key, $value) = each ($other_checkboxes))
{
create_check_box($value,$key);
}
$upload_boxes=array(
"1"=>"1",
"5"=>"5",
"10"=>"10",
"20"=>"20",
"30"=>"30"
);
create_select_box('Default number of upload fields to show','show_upload_boxes',$upload_boxes);