| = htmlReady($configuration->field) ?> |
= htmlReady($configuration->type) ?> |
= mb_strlen($configuration->description) > 120
? htmlReady(mb_substr($configuration->description, 0, 120))
. '...' . tooltip2($configuration->description)
: htmlReady($configuration->description) ?> |
switch ($configuration->type) {
case 'string':
case 'i18n':
echo htmlReady($configuration->value);
break;
case 'integer':
echo (int) $configuration->value;
break;
case 'boolean':
echo $configuration->value
? Icon::create('accept', Icon::ROLE_STATUS_GREEN,
['title' => _('TRUE')])
: Icon::create('decline', Icon::ROLE_STATUS_RED,
['title' => _('FALSE')]);
break;
} ?>
|
endforeach ?>