Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
O
our_own_cloud_project
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
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
die_coolen_jungs
our_own_cloud_project
Commits
af3aceaf
Commit
af3aceaf
authored
13 years ago
by
Robin Appelman
Browse files
Options
Downloads
Patches
Plain Diff
show file extention in a lighter color
parent
f22e39a5
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
files/css/files.css
+4
-0
4 additions, 0 deletions
files/css/files.css
files/index.php
+4
-0
4 additions, 0 deletions
files/index.php
files/templates/part.list.php
+9
-1
9 additions, 1 deletion
files/templates/part.list.php
with
17 additions
and
1 deletion
files/css/files.css
+
4
−
0
View file @
af3aceaf
...
...
@@ -111,3 +111,7 @@ table td.filename a
display
:
inline-block
;
background-image
:
url('../img/drop-arrow.png')
;
}
span
.extention
{
color
:
#666
;
}
\ No newline at end of file
This diff is collapsed.
Click to expand it.
files/index.php
+
4
−
0
View file @
af3aceaf
...
...
@@ -47,6 +47,10 @@ $dir = isset( $_GET['dir'] ) ? $_GET['dir'] : '';
$files
=
array
();
foreach
(
OC_FILES
::
getdirectorycontent
(
$dir
)
as
$i
){
$i
[
"date"
]
=
OC_UTIL
::
formatDate
(
$i
[
"mtime"
]
);
if
(
$i
[
'type'
]
==
'file'
){
$i
[
'extention'
]
=
substr
(
$i
[
'name'
],
strrpos
(
$i
[
'name'
],
'.'
));
$i
[
'name'
]
=
substr
(
$i
[
'name'
],
0
,
strrpos
(
$i
[
'name'
],
'.'
));
}
if
(
$i
[
'directory'
]
==
'/'
){
$i
[
'directory'
]
=
''
;
}
...
...
This diff is collapsed.
Click to expand it.
files/templates/part.list.php
+
9
−
1
View file @
af3aceaf
...
...
@@ -3,7 +3,15 @@
$simple_size_color
=
200
-
intval
(
pow
(
$simple_file_size
,
3
));
?>
<tr
data-file=
"
<?php
echo
$file
[
'name'
];
?>
"
data-type=
"
<?php
echo
(
$file
[
'type'
]
==
'dir'
)
?
'dir'
:
'file'
?>
"
data-mime=
"
<?php
echo
$file
[
'mime'
]
?>
"
>
<td
class=
"selection"
><input
type=
"checkbox"
/></td>
<td
class=
"filename"
><a
style=
"background-image:url(
<?php
if
(
$file
[
'type'
]
==
'dir'
)
echo
mimetype_icon
(
'dir'
);
else
echo
mimetype_icon
(
$file
[
'mime'
]);
?>
)"
href=
"
<?php
if
(
$file
[
'type'
]
==
'dir'
)
echo
link_to
(
'files'
,
'index.php?dir='
.
$file
[
'directory'
]
.
'/'
.
$file
[
'name'
]);
else
echo
link_to
(
'files'
,
'download.php?file='
.
$file
[
'directory'
]
.
'/'
.
$file
[
'name'
]);
?>
"
title=
""
>
<?php
if
(
$file
[
'type'
]
==
'dir'
)
echo
"<strong>"
;
echo
htmlspecialchars
(
$file
[
'name'
]);
if
(
$file
[
'type'
]
==
'dir'
)
echo
"</strong>"
;
?>
</a></td>
<td
class=
"filename"
>
<a
style=
"background-image:url(
<?php
if
(
$file
[
'type'
]
==
'dir'
)
echo
mimetype_icon
(
'dir'
);
else
echo
mimetype_icon
(
$file
[
'mime'
]);
?>
)"
href=
"
<?php
if
(
$file
[
'type'
]
==
'dir'
)
echo
link_to
(
'files'
,
'index.php?dir='
.
$file
[
'directory'
]
.
'/'
.
$file
[
'name'
]);
else
echo
link_to
(
'files'
,
'download.php?file='
.
$file
[
'directory'
]
.
'/'
.
$file
[
'name'
]);
?>
"
title=
""
>
<?php
if
(
$file
[
'type'
]
==
'dir'
)
:
?>
<strong>
<?php
echo
htmlspecialchars
(
$file
[
'name'
]);
?>
</strong>
<?php
else
:
?>
<?php
echo
htmlspecialchars
(
$file
[
'name'
]);
?>
<span
class=
'extention'
>
<?php
echo
$file
[
'extention'
];
?>
</span>
<?php
endif
;
?>
</a>
</td>
<td
class=
"filesize"
title=
"
<?php
echo
human_file_size
(
$file
[
'size'
]);
?>
"
style=
"color:rgb(
<?php
echo
$simple_size_color
.
','
.
$simple_size_color
.
','
.
$simple_size_color
?>
)"
>
<?php
echo
$simple_file_size
;
?>
</td>
<td
class=
"date"
>
<?php
echo
$file
[
'date'
];
?>
</td>
<td
class=
"fileaction"
><a
href=
""
title=
"+"
class=
"dropArrow"
></a></td>
...
...
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