FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
example/src/Example.php at main · pluginsGLPI/example · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
pluginsGLPI
/
example
Public
Notifications
You must be signed in to change notification settings
Fork
36
Star
39
Code
Issues
3
Pull requests
1
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
example
/
src
/
Example.php
Copy path
More file actions
More file actions
Latest commit
History
History
History
617 lines (526 loc) · 20.2 KB
Breadcrumbs
example
/
src
/
Example.php
Copy path
File metadata and controls
617 lines (526 loc) · 20.2 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
<?php
/**
* -------------------------------------------------------------------------
* Example plugin for GLPI
* -------------------------------------------------------------------------
*
* LICENSE
*
* This file is part of Example.
*
* Example 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.
*
* Example is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Example. If not, see <http://www.gnu.org/licenses/>.
* -------------------------------------------------------------------------
* @copyright Copyright (C) 2006-2022 by Example plugin team.
* @license GPLv2 https://www.gnu.org/licenses/gpl-2.0.html
* @link https://github.com/pluginsGLPI/example
* -------------------------------------------------------------------------
*/
// ----------------------------------------------------------------------
// Original Author of file:
// Purpose of file:
// ----------------------------------------------------------------------
namespace
GlpiPlugin
\
Example
;
use
Central
;
use
CommonDBTM
;
use
CommonGLPI
;
use
Computer
;
use
Html
;
use
Item_Disk
;
use
Log
;
use
MassiveAction
;
use
Notification
;
use
Phone
;
use
Preference
;
use
Session
;
use
Supplier
;
use
function
Safe
\
strtotime
;
// Class of the defined type
class
Example
extends
CommonDBTM
{
public
static
$
tags
=
'
[EXAMPLE_ID]
'
;
public
static
$
rightname
=
'
plugin_example
'
;
// Should return the localized name of the type
public
static
function
getTypeName
(
$
nb
=
0
)
{
return
'
Example Type
'
;
}
public
static
function
getMenuName
()
{
return
__s
(
'
Example plugin
'
);
}
public
static
function
getAdditionalMenuLinks
()
{
global
$
CFG_GLPI
;
$
links
= [];
$
links
[
'
config
'
] =
'
/plugins/example/index.php
'
;
$
links
[
"
<img src='
"
.
$
CFG_GLPI
[
'
root_doc
'
] .
"
/pics/menu_showall.png' title='
"
.
__s
(
'
Show all
'
) .
"
' alt='
"
.
__s
(
'
Show all
'
) .
"
'>
"
] =
'
/plugins/example/index.php
'
;
$
links
[
__s
(
'
Test link
'
,
'
example
'
)] =
'
/plugins/example/index.php
'
;
return
$
links
;
}
public
function
defineTabs
(
$
options
= [])
{
$
ong
= [];
$
this
->
addDefaultFormTab
(
$
ong
);
$
this
->
addStandardTab
(
'
Link
'
,
$
ong
,
$
options
);
return
$
ong
;
}
public
function
showForm
(
$
ID
,
array
$
options
= [])
{
global
$
CFG_GLPI
;
$
this
->
initForm
(
$
ID
,
$
options
);
$
this
->
showFormHeader
(
$
options
);
echo
"
<tr class='tab_bg_1'>
"
;
echo
'
<td>
'
.
__s
(
'
ID
'
) .
'
</td>
'
;
echo
'
<td>
'
;
echo
$
ID
;
echo
'
</td>
'
;
$
this
->
showFormButtons
(
$
options
);
return
true
;
}
public
function
rawSearchOptions
()
{
$
tab
= [];
$
tab
[] = [
'
id
'
=>
'
common
'
,
'
name
'
=>
__s
(
'
Header Needed
'
),
];
$
tab
[] = [
'
id
'
=>
'
1
'
,
'
table
'
=>
'
glpi_plugin_example_examples
'
,
'
field
'
=>
'
name
'
,
'
name
'
=>
__s
(
'
Name
'
),
];
$
tab
[] = [
'
id
'
=>
'
2
'
,
'
table
'
=>
'
glpi_plugin_example_dropdowns
'
,
'
field
'
=>
'
name
'
,
'
name
'
=>
__s
(
'
Dropdown
'
),
];
$
tab
[] = [
'
id
'
=>
'
3
'
,
'
table
'
=>
'
glpi_plugin_example_examples
'
,
'
field
'
=>
'
serial
'
,
'
name
'
=>
__s
(
'
Serial number
'
),
'
usehaving
'
=>
true
,
'
searchtype
'
=>
'
equals
'
,
];
$
tab
[] = [
'
id
'
=>
'
30
'
,
'
table
'
=>
'
glpi_plugin_example_examples
'
,
'
field
'
=>
'
id
'
,
'
name
'
=>
__s
(
'
ID
'
),
'
usehaving
'
=>
true
,
'
searchtype
'
=>
'
equals
'
,
];
return
$
tab
;
}
/**
* Give localized information about 1 task
*
* @param $name of the task
*
* @return array of strings
*/
public
static
function
cronInfo
(
$
name
)
{
switch
(
$
name
) {
case
'
Sample
'
:
return
[
'
description
'
=>
__s
(
'
Cron description for example
'
,
'
example
'
),
'
parameter
'
=>
__s
(
'
Cron parameter for example
'
,
'
example
'
)];
}
return
[];
}
/**
* Execute 1 task manage by the plugin
*
* @param $task Object of CronTask class for log / stat
*
* @return int
* >0 : done
* <0 : to be run again (not finished)
* 0 : nothing to do
*/
public
static
function
cronSample
(
$
task
)
{
$
task
->
log
(
'
Example log message from class
'
);
$
r
=
mt_rand
(
0
,
$
task
->
fields
[
'
param
'
]);
usleep
(
1000000
+
$
r
*
1000
);
$
task
->
setVolume
(
$
r
);
return
1
;
}
// Hook done on before add item case (data from form, not altered)
public
static
function
pre_item_add_computer
(
Computer
$
item
)
{
if
(
isset
(
$
item
->
input
[
'
name
'
]) &&
empty
(
$
item
->
input
[
'
name
'
])) {
Session::
addMessageAfterRedirect
(
'
Pre Add Computer Hook KO (name empty)
'
,
true
);
return
$
item
->
input
=
false
;
}
else
{
Session::
addMessageAfterRedirect
(
'
Pre Add Computer Hook OK
'
,
true
);
}
}
// Hook done on before add item case (data altered by object prepareInputForAdd)
public
static
function
post_prepareadd_computer
(
Computer
$
item
)
{
Session::
addMessageAfterRedirect
(
'
Post prepareAdd Computer Hook
'
,
true
);
}
// Hook done on add item case
public
static
function
item_add_computer
(
Computer
$
item
)
{
Session::
addMessageAfterRedirect
(
'
Add Computer Hook, ID=
'
.
$
item
->
getID
(),
true
);
return
true
;
}
public
function
getTabNameForItem
(
CommonGLPI
$
item
,
$
withtemplate
=
0
)
{
if
(!
$
withtemplate
) {
if
(
$
item
instanceof
Profile) {
if
(
$
item
->
getField
(
'
central
'
)) {
return
__s
(
'
Example
'
,
'
example
'
);
}
}
elseif
(
$
item
instanceof
Phone) {
if
(
$
_SESSION
[
'
glpishow_count_on_tabs
'
]) {
return
self
::
createTabEntry
(
__s
(
'
Example
'
,
'
example
'
),
countElementsInTable
(
$
this
->
getTable
()),
);
}
return
__s
(
'
Example
'
,
'
example
'
);
}
elseif
(
$
item
instanceof
Item_Disk ||
$
item
instanceof
Supplier) {
return
[
1
=>
__s
(
'
Test Plugin
'
,
'
example
'
),
2
=>
__s
(
'
Test Plugin 2
'
,
'
example
'
),
];
}
elseif
(
$
item
instanceof
Computer
||
$
item
instanceof
Central
||
$
item
instanceof
Preference
||
$
item
instanceof
Notification) {
return
[
1
=>
__s
(
'
Test Plugin
'
,
'
example
'
),
];
}
}
return
''
;
}
public
static
function
displayTabContentForItem
(
CommonGLPI
$
item
,
$
tabnum
=
1
,
$
withtemplate
=
0
)
{
if
(
$
item
instanceof
Phone) {
echo
__s
(
'
Plugin Example on Phone
'
,
'
example
'
);
}
elseif
(
$
item
instanceof
Central) {
echo
__s
(
'
Plugin central action
'
,
'
example
'
);
}
elseif
(
$
item
instanceof
Preference) {
// Complete form display
$
data
=
plugin_version_example
();
echo
"
<form action='Where to post form'>
"
;
echo
"
<table class='tab_cadre_fixe'>
"
;
echo
"
<tr><th colspan='3'>
"
.
$
data
[
'
name
'
] .
'
-
'
.
$
data
[
'
version
'
];
echo
'
</th></tr>
'
;
echo
"
<tr class='tab_bg_1'><td>Name of the pref</td>
"
;
echo
'
<td>Input to set the pref</td>
'
;
echo
"
<td><input class='submit' type='submit' name='submit' value='submit'></td>
"
;
echo
'
</tr>
'
;
echo
'
</table>
'
;
echo
'
</form>
'
;
}
elseif
(
$
item
instanceof
Notification) {
echo
__s
(
'
Plugin mailing action
'
,
'
example
'
);
}
elseif
(
$
item
instanceof
Item_Disk ||
$
item
instanceof
Supplier) {
if
(
$
tabnum
==
1
) {
echo
__s
(
'
First tab of Plugin example
'
,
'
example
'
);
}
else
{
echo
__s
(
'
Second tab of Plugin example
'
,
'
example
'
);
}
}
else
{
//TRANS: %1$s is a class name, %2$d is an item ID
printf
(
__s
(
'
Plugin example CLASS=%1$s
'
,
'
example
'
),
get_class
(
$
item
));
}
return
true
;
}
public
static
function
getSpecificValueToDisplay
(
$
field
,
$
values
,
array
$
options
= [])
{
if
(!
is_array
(
$
values
)) {
$
values
= [
$
field
=>
$
values
];
}
switch
(
$
field
) {
case
'
serial
'
:
return
'
S/N:
'
.
$
values
[
$
field
];
}
return
''
;
}
// Parm contains begin, end and who
// Create data to be displayed in the planning of $parm["who"] or $parm["who_group"] between $parm["begin"] and $parm["end"]
public
static
function
populatePlanning
(
$
parm
)
{
// Add items in the output array
// Items need to have an unique index beginning by the begin date of the item to display
// needed to be correcly displayed
$
output
= [];
$
key
=
$
parm
[
'
begin
'
] .
'
$$$
'
.
'
plugin_example1
'
;
$
output
[
$
key
][
'
begin
'
] =
date
(
'
Y-m-d 17:00:00
'
);
$
output
[
$
key
][
'
end
'
] =
date
(
'
Y-m-d 18:00:00
'
);
$
output
[
$
key
][
'
name
'
] =
__s
(
'
test planning example 1
'
,
'
example
'
);
// Specify the itemtype to be able to use specific display system
$
output
[
$
key
][
'
itemtype
'
] = Example::class;
// Set the ID using the ID of the item in the database to have unique ID
$
output
[
$
key
][
getForeignKeyFieldForItemType
(Example::class)] =
1
;
return
$
output
;
}
/**
* Display a Planning Item
*
* @param $val Array of the item to display
* @param $who ID of the user (0 if all)
* @param $type position of the item in the time block (in, through, begin or end)
* @param $complete complete display (more details)
*
* @return void (display function)
**/
public
static
function
displayPlanningItem
(
array
$
val
,
$
who
,
$
type
=
''
,
$
complete
=
0
)
{
// $parm["type"] say begin end in or from type
// Add items in the items fields of the parm array
switch
(
$
type
) {
case
'
in
'
:
//TRANS: %1$s is the start time of a planned item, %2$s is the end
printf
(
__s
(
'
From %1$s to %2$s :
'
),
date
(
'
H:i
'
,
strtotime
(
$
val
[
'
begin
'
])),
date
(
'
H:i
'
,
strtotime
(
$
val
[
'
end
'
])),
);
break
;
case
'
through
'
:
echo
Html::
resume_text
(
$
val
[
'
name
'
],
80
);
break
;
case
'
begin
'
:
//TRANS: %s is the start time of a planned item
printf
(
__s
(
'
Start at %s:
'
),
date
(
'
H:i
'
,
strtotime
(
$
val
[
'
begin
'
])));
break
;
case
'
end
'
:
//TRANS: %s is the end time of a planned item
printf
(
__s
(
'
End at %s:
'
),
date
(
'
H:i
'
,
strtotime
(
$
val
[
'
end
'
])));
break
;
}
echo
'
<br>
'
;
echo
Html::
resume_text
(
$
val
[
'
name
'
],
80
);
}
/**
* Get an history entry message
*
* @param $data Array from glpi_logs table
*
* @since GLPI version 0.84
*
* @return string
**/
public
static
function
getHistoryEntry
(
$
data
)
{
switch
(
$
data
[
'
linked_action
'
] - Log::
HISTORY_PLUGIN
) {
case
0
:
return
__s
(
'
History from plugin example
'
,
'
example
'
);
}
return
''
;
}
//////////////////////////////
////// SPECIFIC MODIF MASSIVE FUNCTIONS ///////
public
function
getSpecificMassiveActions
(
$
checkitem
=
null
)
{
$
actions
=
parent
::
getSpecificMassiveActions
(
$
checkitem
);
$
actions
[
'
Document_Item
'
. MassiveAction::
CLASS_ACTION_SEPARATOR
.
'
add
'
] =
_x
(
'
button
'
,
'
Add a document
'
);
// GLPI core one
$
actions
[
self
::class . MassiveAction::
CLASS_ACTION_SEPARATOR
.
'
do_nothing
'
] =
__s
(
'
Do Nothing - just for fun
'
,
'
example
'
);
// Specific one
return
$
actions
;
}
public
static
function
showMassiveActionsSubForm
(
MassiveAction
$
ma
)
{
switch
(
$
ma
->
getAction
()) {
case
'
DoIt
'
:
echo
"
<input type='hidden' name='toto' value='1'>
"
.
Html::
submit
(
_x
(
'
button
'
,
'
Post
'
), [
'
name
'
=>
'
massiveaction
'
]) .
'
'
.
__s
(
'
Write in item history
'
,
'
example
'
);
return
true
;
case
'
do_nothing
'
:
echo
'
'
. Html::
submit
(
_x
(
'
button
'
,
'
Post
'
), [
'
name
'
=>
'
massiveaction
'
]) .
'
'
.
__s
(
'
but do nothing :)
'
,
'
example
'
);
return
true
;
}
return
parent
::
showMassiveActionsSubForm
(
$
ma
);
}
/**
* @since version 0.85
*
* @see CommonDBTM::processMassiveActionsForOneItemtype()
**/
public
static
function
processMassiveActionsForOneItemtype
(
MassiveAction
$
ma
,
CommonDBTM
$
item
,
array
$
ids
) {
global
$
DB
;
switch
(
$
ma
->
getAction
()) {
case
'
DoIt
'
:
if
(
$
item
->
getType
() ==
'
Computer
'
) {
Session::
addMessageAfterRedirect
(
__s
(
'
Right it is the type I want...
'
,
'
example
'
));
Session::
addMessageAfterRedirect
(
__s
(
'
Write in item history
'
,
'
example
'
));
$
changes
= [
0
,
'
old value
'
,
'
new value
'
];
foreach
(
$
ids
as
$
id
) {
if
(
$
item
->
getFromDB
(
$
id
)) {
Session::
addMessageAfterRedirect
(
'
-
'
.
$
item
->
getField
(
'
name
'
));
Log::
history
(
$
id
,
'
Computer
'
,
$
changes
,
Example::class,
Log::
HISTORY_PLUGIN
,
);
$
ma
->
itemDone
(
$
item
->
getType
(),
$
id
, MassiveAction::
ACTION_OK
);
}
else
{
// Example of ko count
$
ma
->
itemDone
(
$
item
->
getType
(),
$
id
, MassiveAction::
ACTION_KO
);
}
}
}
else
{
// When nothing is possible ...
$
ma
->
itemDone
(
$
item
->
getType
(),
$
ids
, MassiveAction::
ACTION_KO
);
}
return
;
case
'
do_nothing
'
:
if
(
$
item
->
getType
() == Example::class) {
Session::
addMessageAfterRedirect
(
__s
(
'
Right it is the type I want...
'
,
'
example
'
));
Session::
addMessageAfterRedirect
(
__s
(
'
But... I say I will do nothing for:
'
,
'
example
'
,
));
foreach
(
$
ids
as
$
id
) {
if
(
$
item
->
getFromDB
(
$
id
)) {
Session::
addMessageAfterRedirect
(
'
-
'
.
$
item
->
getField
(
'
name
'
));
$
ma
->
itemDone
(
$
item
->
getType
(),
$
id
, MassiveAction::
ACTION_OK
);
}
else
{
// Example for noright / Maybe do it with can function is better
$
ma
->
itemDone
(
$
item
->
getType
(),
$
id
, MassiveAction::
ACTION_KO
);
}
}
}
else
{
$
ma
->
itemDone
(
$
item
->
getType
(),
$
ids
, MassiveAction::
ACTION_KO
);
}
return
;
}
parent
::
processMassiveActionsForOneItemtype
(
$
ma
,
$
item
,
$
ids
);
}
public
static
function
generateLinkContents
(
$
link
,
CommonDBTM
$
item
,
bool
$
safe_url
=
true
)
{
if
(
strstr
(
$
link
,
'
[EXAMPLE_ID]
'
)) {
$
link
=
str_replace
(
'
[EXAMPLE_ID]
'
, (
string
)
$
item
->
getID
(),
$
link
);
return
[
$
link
];
}
return
parent
::
generateLinkContents
(
$
link
,
$
item
,
$
safe_url
);
}
public
static
function
dashboardTypes
()
{
return
[
'
example
'
=> [
'
label
'
=>
__s
(
'
Plugin Example
'
,
'
example
'
),
'
function
'
=> Example::class .
'
::cardWidget
'
,
'
image
'
=>
'
https://via.placeholder.com/100x86?text=example
'
,
],
'
example_static
'
=> [
'
label
'
=>
__s
(
'
Plugin Example (static)
'
,
'
example
'
),
'
function
'
=> Example::class .
'
::cardWidgetWithoutProvider
'
,
'
image
'
=>
'
https://via.placeholder.com/100x86?text=example+static
'
,
],
];
}
public
static
function
dashboardCards
(
$
cards
= [])
{
if
(
is_null
(
$
cards
)) {
$
cards
= [];
}
$
new_cards
= [
'
plugin_example_card
'
=> [
'
widgettype
'
=> [
'
example
'
],
'
label
'
=>
__s
(
'
Plugin Example card
'
),
'
provider
'
=> Example::class .
'
::cardDataProvider
'
,
],
'
plugin_example_card_without_provider
'
=> [
'
widgettype
'
=> [
'
example_static
'
],
'
label
'
=>
__s
(
'
Plugin Example card without provider
'
),
],
'
plugin_example_card_with_core_widget
'
=> [
'
widgettype
'
=> [
'
bigNumber
'
],
'
label
'
=>
__s
(
'
Plugin Example card with core provider
'
),
'
provider
'
=> Example::class .
'
::cardBigNumberProvider
'
,
],
];
return
array_merge
(
$
cards
,
$
new_cards
);
}
public
static
function
cardWidget
(
array
$
params
= [])
{
$
default
= [
'
data
'
=> [],
'
title
'
=>
''
,
// this property is "pretty" mandatory,
// as it contains the colors selected when adding widget on the grid send
// without it, your card will be transparent
'
color
'
=>
''
,
];
$
p
=
array_merge
(
$
default
,
$
params
);
// you need to encapsulate your html in div.card to benefit core style
$
html
=
"
<div class='card' style='background-color:
{
$
p
[
'
color
'
]}
;'>
"
;
$
html
.=
"
<h2>
{
$
p
[
'
title
'
]}
</h2>
"
;
$
html
.=
'
<ul>
'
;
foreach
(
$
p
[
'
data
'
]
as
$
line
) {
$
html
.=
"
<li>
$
line
</li>
"
;
}
$
html
.=
'
</ul>
'
;
$
html
.=
'
</div>
'
;
return
$
html
;
}
public
static
function
cardDataProvider
(
array
$
params
= [])
{
$
default_params
= [
'
label
'
=>
null
,
'
icon
'
=>
'
fas fa-smile-wink
'
,
];
$
params
=
array_merge
(
$
default_params
,
$
params
);
return
[
'
title
'
=>
$
params
[
'
label
'
],
'
icon
'
=>
$
params
[
'
icon
'
],
'
data
'
=> [
'
test1
'
,
'
test2
'
,
'
test3
'
,
],
];
}
public
static
function
cardWidgetWithoutProvider
(
array
$
params
= [])
{
$
default
= [
// this property is "pretty" mandatory,
// as it contains the colors selected when adding widget on the grid send
// without it, your card will be transparent
'
color
'
=>
''
,
];
$
p
=
array_merge
(
$
default
,
$
params
);
// you need to encapsulate your html in div.card to benefit core style
$
html
=
"
<div class='card' style='background-color:
{
$
p
[
'
color
'
]}
;'>
static html (+optional javascript) as card is not matched with a data provider
<img src='https://www.linux.org/images/logo.png'>
</div>
"
;
return
$
html
;
}
public
static
function
cardBigNumberProvider
(
array
$
params
= [])
{
return
[
'
number
'
=>
random_int
(
0
,
mt_getrandmax
()),
'
url
'
=>
'
https://www.linux.org/
'
,
'
label
'
=>
'
plugin example - some text
'
,
'
icon
'
=>
'
fab fa-linux
'
,
// font awesome icon
];
}
}
Back
|
FazBrowse Home
|
New Git URL