| Server IP : 195.130.67.5 / Your IP : 216.73.217.154 Web Server : Microsoft-IIS/10.0 System : Windows NT WEBSERVER1 10.0 build 17763 (Windows Server 2016) i586 User : IUSR ( 0) PHP Version : 7.4.19 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /inetpub/wwwroot/icd/administrator/components/com_linkr/views/link/tmpl/ |
Upload File : |
<?php defined('_JEXEC') or die; ?>
<div id="linkr">
<?php
/*
* Tools: Only show if there's more than one link
*/
if ($this->tools['count'] > 1 || ($this->tools['count'] == 1 && $this->links['count']))
{
?>
<div class="llGroup" style="border-bottom:2px solid #ddd;">
<div class="llTitle">
<img alt="..." src="<?php echo JURI::root(); ?>administrator/components/com_linkr/assets/linkr.gif" />
</div>
<div class="llContent">
<?php echo implode(' | ', $this->tools['html']); ?>
| <?php echo LINKR_VERSION_READ; ?>
</div>
<div style="clear:both;"></div>
</div>
<?php
}
/*
* Links: Only show if there's more than one link
*/
if ($this->links['count'] > 1 || ($this->links['count'] == 1 && $this->tools['count']))
{
?>
<div class="llGroup" style="border-bottom:2px solid silver;">
<div class="llTitle">
<?php echo JText::_('LINK'); ?>
</div>
<div class="llContent">
<?php echo implode(' | ', $this->links['html']); ?>
</div>
<div style="clear:both;"></div>
</div>
<?php
}
?>
<div id="layout">
<div style="padding:50px;text-align:center;font-size:14px;letter-spacing:3px;">
<?php echo JText::_('LL_INSTRUCTIONS'); ?>
</div>
</div>
</div>