70 lines
3.2 KiB
PHP
70 lines
3.2 KiB
PHP
<?php
|
|
if (!isset($data['requirement']) || $data['requirement']) {
|
|
if (!empty($data['popover_url'])) {
|
|
$onClick = sprintf(
|
|
'onClick="populateAndLoadModal(%s)"',
|
|
sprintf("'%s'", h($data['popover_url']))
|
|
);
|
|
}
|
|
if (empty($onClick)) {
|
|
if (!empty($data['onClick']) || empty($data['url'])) {
|
|
$onClickParams = array();
|
|
if (!empty($data['onClickParams'])) {
|
|
foreach ($data['onClickParams'] as $param) {
|
|
if ($param === 'this') {
|
|
$onClickParams[] = h($param);
|
|
} else {
|
|
$onClickParams[] = '\'' . h($param) . '\'';
|
|
}
|
|
}
|
|
}
|
|
$onClickParams = implode(',', $onClickParams);
|
|
$onClick = sprintf(
|
|
'onClick = "%s%s"',
|
|
(empty($data['url'])) ? 'event.preventDefault();' : '',
|
|
(!empty($data['onClick']) ? sprintf(
|
|
'%s(%s)',
|
|
h($data['onClick']),
|
|
$onClickParams
|
|
) : '')
|
|
);
|
|
} else if(!empty($data['url'])) {
|
|
$onClick = sprintf(
|
|
'onClick = "%s"',
|
|
sprintf('window.location=\'%s\'', $data['url'])
|
|
);
|
|
}
|
|
}
|
|
$dataFields = array();
|
|
if (!empty($data['data'])) {
|
|
foreach ($data['data'] as $dataKey => $dataValue) {
|
|
$dataFields[] = sprintf(
|
|
'data-%s="%s"',
|
|
h($dataKey),
|
|
h($dataValue)
|
|
);
|
|
}
|
|
}
|
|
$dataFields = implode(' ', $dataFields);
|
|
echo sprintf(
|
|
'<button class="btn btn-sm %s %s" %s href="%s" %s %s %s %s %s>%s%s%s</button>',
|
|
empty($data['class']) ? '' : h($data['class']),
|
|
!$data['isFilter'] ? 'btn-primary' : (empty($data['active']) ? 'btn-light' : 'btn-secondary'), // Change the default class for highlighted/active toggles here
|
|
empty($data['id']) ? '' : 'id="' . h($data['id']) . '"',
|
|
empty($data['url']) ? '#' : h($data['url']), // prevent default is passed if the url is not set
|
|
empty($onClick) ? '' : $onClick, // pass $data['onClick'] for the function name to call and $data['onClickParams'] for the parameter list
|
|
empty($dataFields) ? '' : $dataFields,
|
|
empty($data['title']) ? '' : sprintf('title="%s"', h($data['title'])),
|
|
empty($data['style']) ? '' : sprintf('style="%s"', h($data['style'])),
|
|
!empty($data['text']) ? '' : (!empty($data['title']) ? sprintf('aria-label="%s"', h($data['title'])) : ''),
|
|
empty($data['fa-icon']) ? '' : sprintf(
|
|
'<i class="%s fa-%s"></i> ',
|
|
empty($data['fa-source']) ? 'fas' : h($data['fa-source']),
|
|
$data['fa-icon']
|
|
), // this has to be sanitised beforehand!
|
|
empty($data['html']) ? '' : $data['html'], // this has to be sanitised beforehand!
|
|
empty($data['text']) ? '' : h($data['text'])
|
|
);
|
|
}
|
|
?>
|