2020-08-07 21:47:04 +02:00
|
|
|
<?php
|
|
|
|
$start = $this->Hash->extract($row, 'authkey_start')[0];
|
|
|
|
$end = $this->Hash->extract($row, 'authkey_end')[0];
|
|
|
|
echo sprintf(
|
2021-09-17 13:04:37 +02:00
|
|
|
'<div>%s: <span class="fw-bold text-info">%s</span></div>',
|
2020-08-07 21:47:04 +02:00
|
|
|
__('Starts with'),
|
|
|
|
h($start)
|
|
|
|
);
|
|
|
|
echo sprintf(
|
2021-09-17 13:04:37 +02:00
|
|
|
'<div>%s: <span class="fw-bold text-info">%s</span></div>',
|
2020-08-07 21:47:04 +02:00
|
|
|
__('Ends with'),
|
|
|
|
h($end)
|
|
|
|
);
|
|
|
|
?>
|