mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-22 07:53:39 +01:00
- fixed group files (essential for sharing files)
- make all buttons work in IE (for some people quite usefull :) - some lay-out improvements - fixed save and done button in file edit mode - add sidebox menu - re-arranged toolbars (still not finished) - new location selectbox - some speed improvements
This commit is contained in:
parent
f2bc951d3f
commit
c1698d2f2b
File diff suppressed because it is too large
Load Diff
33
filemanager/inc/hook_sidebox_menu.inc.php
Executable file
33
filemanager/inc/hook_sidebox_menu.inc.php
Executable file
@ -0,0 +1,33 @@
|
||||
<?php
|
||||
/**************************************************************************\
|
||||
* phpGroupWare - Calendar's Sidebox-Menu for idots-template *
|
||||
* http://www.phpgroupware.org *
|
||||
* Written by Pim Snel <pim@lingewoud.nl> *
|
||||
* -------------------------------------------- *
|
||||
* 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) any later version. *
|
||||
\**************************************************************************/
|
||||
|
||||
/* $Id$ */
|
||||
{
|
||||
|
||||
/*
|
||||
This hookfile is for generating an app-specific side menu used in the idots
|
||||
template set.
|
||||
|
||||
$menu_title speaks for itself
|
||||
$file is the array with link to app functions
|
||||
|
||||
display_sidebox can be called as much as you like
|
||||
*/
|
||||
|
||||
$menu_title = $GLOBALS['phpgw_info']['apps'][$appname]['title'] . ' '. lang('Menu');
|
||||
$file = Array(
|
||||
array('','text'=>'Filemanager Preferences','link'=>$GLOBALS['phpgw']->link('/preferences/preferences.php','appname=filemanager')),
|
||||
);
|
||||
display_sidebox($appname,$menu_title,$file);
|
||||
|
||||
}
|
||||
?>
|
@ -24,6 +24,7 @@
|
||||
'admin',
|
||||
'deleteaccount',
|
||||
'settings',
|
||||
'sidebox_menu',
|
||||
'preferences'
|
||||
);
|
||||
|
||||
|
@ -1,25 +1,23 @@
|
||||
<!-- BEGIN filemanager_header -->
|
||||
<form method="post" action="{form_action}">
|
||||
<br/>
|
||||
{messages}
|
||||
<br/>
|
||||
<form name="formfm" method="post" action="{form_action}">
|
||||
|
||||
|
||||
{toolbar0}
|
||||
<div id="fmMenu">
|
||||
{toolbar1}
|
||||
</div>
|
||||
<div id="fmFileWindow">
|
||||
<table>
|
||||
{messages} <table cellspacing="0" cellpadding="2">
|
||||
<tbody>
|
||||
<!-- END filemanager_header -->
|
||||
|
||||
<!-- BEGIN column -->
|
||||
<td valign="top">{col_data} </td>
|
||||
<td valign="top" style="padding-left:2px;padding-right:2px;">{col_data} </td>
|
||||
<!-- END column -->
|
||||
|
||||
<!-- BEGIN row -->
|
||||
<tr bgcolor="{row_tr_color}">
|
||||
<td>{actions}</td>
|
||||
<td style="padding-left:2px;padding-right:2px;">{actions}</td>
|
||||
{columns}
|
||||
</tr>
|
||||
<!-- END row -->
|
||||
|
BIN
filemanager/templates/default/images/mime16up.png
Normal file
BIN
filemanager/templates/default/images/mime16up.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.0 KiB |
@ -1,11 +1,11 @@
|
||||
<!-- BEGIN index -->
|
||||
<table width="100%" border="1" cols="{colspan}">
|
||||
<tr>
|
||||
<!--<tr>
|
||||
<td align="center" colspan="{colspan}">{error}
|
||||
</td>
|
||||
</tr>
|
||||
</tr>-->
|
||||
<tr>
|
||||
<td align="center" colspan="{colspan}">
|
||||
<td align="center" colspan="{colspan}">{error}
|
||||
<form action="{form_action}" method="post">
|
||||
<table width="100%" border="1">
|
||||
<tr{tr_extras}>
|
||||
|
@ -1,16 +1,16 @@
|
||||
<!-- BEGIN upload_header -->
|
||||
<form method="post" action="{form_action}" enctype="multipart/form-data">
|
||||
<div>
|
||||
<table>
|
||||
<table cellspacing="0" cellpadding="2">
|
||||
<tbody>
|
||||
<tr bgcolor="{row_tr_color}">
|
||||
<tr bgcolor="#dedede">
|
||||
<td><strong>{lang_file}</strong></td>
|
||||
<td><strong>{lang_comment}</strong></td>
|
||||
</tr>
|
||||
<!-- END upload_header -->
|
||||
|
||||
<!-- BEGIN row -->
|
||||
<tr bgcolor="{row_tr_color}">
|
||||
<tr >
|
||||
<td><input maxlength="255" name="upload_file[]" type="file"></td>
|
||||
<td><input name="upload_comment[]" type="text"></td>
|
||||
</tr>
|
||||
|
Loading…
Reference in New Issue
Block a user