2019-04-19 21:47:28 +00:00
|
|
|
<?php if (is_countable($formModel->referer) && count($formModel->referer) > 0): ?>
|
2014-08-01 07:58:27 +00:00
|
|
|
<div class="form-control control-simplelist with-icons">
|
|
|
|
|
<ul>
|
|
|
|
|
<?php foreach ((array) $formModel->referer as $referer): ?>
|
2018-11-15 21:05:44 +00:00
|
|
|
<li class="oc-icon-file-o"><?= e($referer) ?></li>
|
2014-08-01 07:58:27 +00:00
|
|
|
<?php endforeach ?>
|
|
|
|
|
</ul>
|
|
|
|
|
</div>
|
|
|
|
|
<?php else: ?>
|
|
|
|
|
<div class="form-control"><em>There were no detected referers to this URL.</em></div>
|
2018-05-31 19:09:47 +00:00
|
|
|
<?php endif ?>
|