39 lines
1.4 KiB
PHP
39 lines
1.4 KiB
PHP
|
<?php
|
||
|
$orgs = $this->Hash->extract($row, $field['data_path']);
|
||
|
if (!isset($field['fields']['allow_picture'])) {
|
||
|
$field['fields']['allow_picture'] = true;
|
||
|
}
|
||
|
if (!isset($field['fields']['default_org'])) {
|
||
|
$field['fields']['default_org'] = '';
|
||
|
}
|
||
|
if (!empty($orgs)) {
|
||
|
if (!isset($orgs[0])) {
|
||
|
$orgs = array($orgs);
|
||
|
}
|
||
|
$count = count($orgs);
|
||
|
$i = 0;
|
||
|
foreach ($orgs as $org) {
|
||
|
$i++;
|
||
|
if (!empty($org['id']) || !empty($org['name'])) {
|
||
|
if ($field['fields']['allow_picture'] && !empty($org['id'])) {
|
||
|
echo $this->OrgImg->getOrgImg(array('name' => $org['name'], 'id' => $org['id'], 'size' => 24));
|
||
|
} else {
|
||
|
echo sprintf(
|
||
|
'<a href="%s/organisations/view/%s">%s</a>',
|
||
|
$baseurl,
|
||
|
empty($org['id']) ? h($org['uuid']) : h($org['id']),
|
||
|
h($org['name'])
|
||
|
);
|
||
|
}
|
||
|
if ($i < $count) {
|
||
|
echo '<br />';
|
||
|
}
|
||
|
} else {
|
||
|
if ($field['fields']['allow_picture']) {
|
||
|
echo $this->OrgImg->getOrgImg(array('name' => $field['fields']['default_org'], 'size' => 24));
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
?>
|