Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dolibarr
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container Registry
Model registry
Analyze
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Software_Artifact_Infrastructure_Repository
dolibarr
Commits
44a78ca8
Commit
44a78ca8
authored
11 years ago
by
Laurent Destailleur
Browse files
Options
Downloads
Plain Diff
Merge pull request #1262 from defrance69/patch-17
Update html.formfile.class.php
parents
e535d1f1
15b1507c
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
htdocs/core/class/html.formfile.class.php
+18
-2
18 additions, 2 deletions
htdocs/core/class/html.formfile.class.php
with
18 additions
and
2 deletions
htdocs/core/class/html.formfile.class.php
+
18
−
2
View file @
44a78ca8
...
...
@@ -2,6 +2,7 @@
/* Copyright (c) 2008-2013 Laurent Destailleur <eldy@users.sourceforge.net>
* Copyright (C) 2010-2012 Regis Houssin <regis.houssin@capnetworks.com>
* Copyright (c) 2010 Juanjo Menent <jmenent@2byte.es>
* Copyright (c) 2013 Charles-Fr BENKE <charles.fr@benke.fr>
*
* 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
...
...
@@ -732,8 +733,16 @@ class FormFile
print
'<a data-ajax="false" href="'
.
DOL_URL_ROOT
.
'/document.php?modulepart='
.
$modulepart
;
if
(
$forcedownload
)
print
'&attachment=1'
;
if
(
!
empty
(
$object
->
entity
))
print
'&entity='
.
$object
->
entity
;
print
'&file='
.
urlencode
(
$relativepath
.
$file
[
'name'
])
.
'">'
;
//print '&file='.urlencode($relativepath.$file['name']).'">';
if
(
$file
[
'level1name'
]
<>
$object
->
id
)
$filepath
=
urlencode
(
$object
->
id
.
'/'
.
$file
[
'level1name'
]
.
'/'
.
$file
[
'name'
]);
else
$filepath
=
urlencode
(
$object
->
id
.
'/'
.
$file
[
'name'
]);
print
'&file='
.
$filepath
.
'">'
;
print
img_mime
(
$file
[
'name'
],
$file
[
'name'
]
.
' ('
.
dol_print_size
(
$file
[
'size'
],
0
,
0
)
.
')'
)
.
' '
;
if
(
$file
[
'level1name'
]
<>
$object
->
id
)
print
$file
[
'level1name'
]
.
'/'
;
print
dol_trunc
(
$file
[
'name'
],
$maxlength
,
'middle'
);
print
'</a>'
;
print
"</td>
\n
"
;
...
...
@@ -753,7 +762,14 @@ class FormFile
// ($param must start with &)
print
'<td align="right">'
;
if
(
$useinecm
)
print
'<a href="'
.
DOL_URL_ROOT
.
'/ecm/docfile.php?urlfile='
.
urlencode
(
$file
[
'name'
])
.
$param
.
'" class="editfilelink" rel="'
.
urlencode
(
$file
[
'name'
])
.
$param
.
'">'
.
img_view
()
.
'</a> '
;
if
(
$permtodelete
)
print
'<a href="'
.
((
$useinecm
&&
!
empty
(
$conf
->
use_javascript_ajax
)
&&
empty
(
$conf
->
global
->
MAIN_ECM_DISABLE_JS
))
?
'#'
:
$url
.
'?action=delete&urlfile='
.
urlencode
(
$file
[
'name'
])
.
$param
)
.
'" class="deletefilelink" rel="'
.
urlencode
(
$file
[
'name'
])
.
$param
.
'">'
.
img_delete
()
.
'</a>'
;
if
(
$permtodelete
)
{
if
(
$file
[
'level1name'
]
<>
$object
->
id
)
$filepath
=
urlencode
(
$file
[
'level1name'
]
.
'/'
.
$file
[
'name'
]);
else
$filepath
=
urlencode
(
$file
[
'name'
]);
print
'<a href="'
.
((
$useinecm
&&
!
empty
(
$conf
->
use_javascript_ajax
)
&&
empty
(
$conf
->
global
->
MAIN_ECM_DISABLE_JS
))
?
'#'
:
$url
.
'?action=delete&urlfile='
.
$filepath
.
$param
)
.
'" class="deletefilelink" rel="'
.
$filepath
.
$param
.
'">'
.
img_delete
()
.
'</a>'
;
}
else
print
' '
;
print
"</td>"
;
print
"</tr>
\n
"
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment