Your IP : 216.73.216.240


Current Path : /home/juvelize/saulnois/libraries/ic_library/Render/
Upload File :
Current File : /home/juvelize/saulnois/libraries/ic_library/Render/Render.php

<?php
/**
 *----------------------------------------------------------------------------
 * iC Library   Library by JoomliC, for Joomla!
 *----------------------------------------------------------------------------
 * @version     2.0.0 2021-09-27
 *
 * @package     iC Library
 * @subpackage  Render
 * @link        https://www.joomlic.com
 *
 * @author      Cyril Reze
 * @copyright   (c) 2013-2026 Cyril Reze / JoomliC. All rights reserved.
 * @license     GNU General Public License version 3 or later; see LICENSE.txt
 *
 * @since       1.4.0
 *----------------------------------------------------------------------------
*/

namespace iClib\Render;

\defined('_JEXEC') or die;

use iClib\Url\Url as iCUrl;

/**
 * class iCRender
 */
class Render
{
	/**
	 * Function to return Url TAG
	 */
	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>';
	}
}