Current Path :
/
home
/
develito
/
www
/
tmp
/
install_5fbe13453fa5e
/
site
/
lib
/
html
/
field
/
Or
Select Your Path :
Upload File :
New :
File
Dir
/home/develito/www/tmp/install_5fbe13453fa5e/site/lib/html/field/url.php
<?php /** * Visforms HTML class for url field * * @author Aicha Vack * @package Joomla.Site * @subpackage com_visforms * @link http://www.vi-solutions.de * @license GNU General Public License version 2 or later; see license.txt * @copyright 2012 vi-solutions * @since Joomla 1.6 */ // no direct access defined('_JEXEC') or die('Restricted access'); require_once(__DIR__ . '/text.php'); /** * Create HTML of a url field according to it's type * * @package Joomla.Site * @subpackage com_visforms * @since 1.6 */ class VisformsHtmlUrl extends VisformsHtmlText { /** * * Constructor * * @param object $field field object as extracted from database */ public function __construct($field, $decorable, $attribute_type) { $attribute_type = "url"; parent::__construct($field, $decorable, $attribute_type); } }