Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
AdminLTE renderer
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD 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
IML Open Source
AdminLTE renderer
Merge requests
!6
update component defs
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
update component defs
fix-missing-files
into
main
Overview
0
Commits
1
Pipelines
0
Changes
2
Merged
Hahn Axel (hahn)
requested to merge
fix-missing-files
into
main
1 year ago
Overview
0
Commits
1
Pipelines
0
Changes
2
Expand
0
0
Merge request reports
Compare
main
main (base)
and
latest version
latest version
c69e0cb2
1 commit,
1 year ago
2 files
+
17
−
2
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
public_html/classes/render-adminlte.class.php
+
16
−
1
Options
@@ -192,6 +192,11 @@ class renderadminlte {
'params'
=>
[
'type'
=>
[
'select'
=>
$this
->
aPresets
[
'type'
],
'example_value'
=>
'warning'
],
'dismissible'
=>
[
'select'
=>
$this
->
aPresets
[
'yesno'
],
'example_value'
=>
''
],
'class'
=>
[
'group'
=>
'styling'
,
'description'
=>
'optional: css classes'
,
'example_value'
=>
''
],
'title'
=>
[
'description'
=>
'Title in a bit bigger font'
,
'group'
=>
'content'
,
@@ -341,6 +346,11 @@ class renderadminlte {
'type'
=>
[
'select'
=>
$this
->
aPresets
[
'type'
],
'example_value'
=>
''
],
'iconbg'
=>
[
'select'
=>
$this
->
aPresets
[
'type'
],
'example_value'
=>
'info'
],
'shadow'
=>
[
'select'
=>
$this
->
aPresets
[
'shadow'
],
'example_value'
=>
''
],
'class'
=>
[
'group'
=>
'styling'
,
'description'
=>
'optional: css classes'
,
'example_value'
=>
''
],
'icon'
=>
[
'group'
=>
'content'
,
'description'
=>
'css class for an icon'
,
@@ -377,7 +387,11 @@ class renderadminlte {
'params'
=>
[
'type'
=>
[
'select'
=>
$this
->
aPresets
[
'type'
],
'example_value'
=>
'info'
],
'shadow'
=>
[
'select'
=>
$this
->
aPresets
[
'shadow'
],
'example_value'
=>
''
],
'class'
=>
[
'group'
=>
'styling'
,
'description'
=>
'optional: css classes'
,
'example_value'
=>
''
],
'icon'
=>
[
'group'
=>
'content'
,
'description'
=>
'css class for an icon'
,
'example_value'
=>
'fas fa-shopping-cart'
],
'text'
=>
[
'group'
=>
'content'
,
'description'
=>
'short information text'
,
'example_value'
=>
'New orders'
],
@@ -1063,6 +1077,7 @@ class renderadminlte {
// print_r($aOptions);
$sClass
=
'small-box'
.
$this
->
_addClassValue
(
$aOptions
[
'type'
],
'bg-'
)
.
$this
->
_addClassValue
(
$aOptions
[
'class'
],
''
)
.
(
$aOptions
[
'shadow'
]
&&
isset
(
$this
->
_aValueMappings
[
'shadow'
][
$aOptions
[
'shadow'
]])
?
' '
.
$this
->
_aValueMappings
[
'shadow'
][
$aOptions
[
'shadow'
]]
:
''
)
;
Loading