2020-05-29 13:41:58 +02:00
|
|
|
<?php
|
|
|
|
$distributionLevel = ($this->Hash->extract($row, $field['data_path'])[0]);
|
|
|
|
echo sprintf(
|
|
|
|
'<span class="%s bold">%s</span>',
|
|
|
|
$distributionLevel == 0 ? 'red' : '',
|
|
|
|
$distributionLevel != 4 ? $distributionLevels[$distributionLevel] :
|
|
|
|
sprintf(
|
2021-02-09 22:10:26 +01:00
|
|
|
'<a href="%ssharing_groups/view/%s">%s</a>',
|
2020-05-29 13:41:58 +02:00
|
|
|
$baseurl,
|
|
|
|
h($row['SharingGroup']['id']),
|
|
|
|
h($row['SharingGroup']['name'])
|
|
|
|
)
|
|
|
|
);
|
|
|
|
|
|
|
|
?>
|