Done !
| Server IP : 46.105.57.169 / Your IP : 216.73.216.67 Web Server : Apache System : Linux webm002.cluster120.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64 User : verseaumee ( 152031) PHP Version : 8.5.7 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/verseaumee/ptitsanes/libraries/ic_library/render/ |
Upload File : |
<?php
/**
*------------------------------------------------------------------------------
* iC Library - Library by Jooml!C, for Joomla!
*------------------------------------------------------------------------------
* @package iC Library
* @subpackage render
* @copyright Copyright (c)2013-2019 Cyril Rezé, Jooml!C - All rights reserved
*
* @license GNU General Public License version 3 or later; see LICENSE.txt
* @author Cyril Rezé (Lyr!C)
* @link http://www.joomlic.com
*
* @version 1.4.0 2016-05-12
* @since 1.4.0
*------------------------------------------------------------------------------
*/
// No direct access to this file
defined('_JEXEC') or die();
/**
* class iCUrl
*/
class iCRender
{
/**
* Function to return Url TAG
*
* @since 1.4.0
*/
static public function urlTag($url, $target = null, $nofollow = true)
{
$target = $target ? $target : '_blank';
$nofollow = $nofollow ? ' rel="nofollow"' : '';
$link = iCUrl::urlParsed($url, 'scheme');
return '<a href="' . $link . '"' . $nofollow . ' target="' . $target . '">' . $url . '</a>';
}
}