Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dokuwiki
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
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
BRIC
dokuwiki
Commits
80083a41
Commit
80083a41
authored
13 years ago
by
Andreas Gohr
Browse files
Options
Downloads
Patches
Plain Diff
made tpl_license a bit more flexible
This way there's less custom code for the footer buttons needed
parent
1cbac89c
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
inc/template.php
+13
-5
13 additions, 5 deletions
inc/template.php
with
13 additions
and
5 deletions
inc/template.php
+
13
−
5
View file @
80083a41
...
...
@@ -1350,8 +1350,9 @@ function tpl_actiondropdown($empty='',$button='>'){
* @author Andreas Gohr <andi@splitbrain.org>
* @param string $img - print image? (|button|badge)
* @param bool $return - when true don't print, but return HTML
* @param bool $wrap - wrap in div with class="license"?
*/
function
tpl_license
(
$img
=
'badge'
,
$imgonly
=
false
,
$return
=
false
){
function
tpl_license
(
$img
=
'badge'
,
$imgonly
=
false
,
$return
=
false
,
$wrap
=
true
){
global
$license
;
global
$conf
;
global
$lang
;
...
...
@@ -1359,22 +1360,29 @@ function tpl_license($img='badge',$imgonly=false,$return=false){
if
(
!
is_array
(
$license
[
$conf
[
'license'
]]))
return
''
;
$lic
=
$license
[
$conf
[
'license'
]];
$out
=
'<div class="license">'
;
$out
=
''
;
if
(
$wrap
)
$out
.
=
'<div class="license">'
;
if
(
$img
){
$src
=
license_img
(
$img
);
if
(
$src
){
if
(
!
$imgonly
){
$left
=
'medialeft'
;
}
else
{
$left
=
''
;
}
$out
.
=
'<a href="'
.
$lic
[
'url'
]
.
'" rel="license"'
;
if
(
$conf
[
'target'
][
'extern'
])
$out
.
=
' target="'
.
$conf
[
'target'
][
'extern'
]
.
'"'
;
$out
.
=
'><img src="'
.
DOKU_BASE
.
$src
.
'" class="
media
left lic'
.
$img
.
'" alt="'
.
$lic
[
'name'
]
.
'" /></a> '
;
$out
.
=
'><img src="'
.
DOKU_BASE
.
$src
.
'" class="
'
.
$
left
.
'
lic'
.
$img
.
'" alt="'
.
$lic
[
'name'
]
.
'" /></a> '
;
}
}
if
(
!
$imgonly
)
{
$out
.
=
$lang
[
'license'
];
$out
.
=
'
<a href="'
.
$lic
[
'url'
]
.
'" rel="license" class="urlextern"'
;
$out
.
=
'<a href="'
.
$lic
[
'url'
]
.
'" rel="license" class="urlextern"'
;
if
(
$conf
[
'target'
][
'extern'
])
$out
.
=
' target="'
.
$conf
[
'target'
][
'extern'
]
.
'"'
;
$out
.
=
'>'
.
$lic
[
'name'
]
.
'</a>'
;
}
$out
.
=
'</div>'
;
if
(
$wrap
)
$out
.
=
'</div>'
;
if
(
$return
)
return
$out
;
echo
$out
;
...
...
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