| Current Path : /home/juvelize/martine/administrator/components/com_elioallvideos2/dom/html/link/ |
| Current File : /home/juvelize/martine/administrator/components/com_elioallvideos2/dom/html/link/default.php |
<?php
/** ______________________________________________
* o O | |
* ((((( o < JDom Class - Cook Self Service library |
* ( o o ) |______________________________________________|
* --------oOOO-----(_)-----OOOo---------------------------------- www.j-cook.pro --- +
* @version 1.0.0
* @package Cook Self Service
* @subpackage JDom
* @license GNU General Public License
* @author 100% Vitamin - Jocelyn HUARD
*
* -> You can reuse this framework for all purposes. Keep this signature. <-
*
* /!\ Joomla! is free software.
* This version may have been modified pursuant to the GNU General Public License,
* and as distributed it includes or is derivative of works licensed under the
* GNU General Public License or other free or open source software licenses.
*
* .oooO Oooo. See COPYRIGHT.php for copyright notices and details.
* ( ) ( )
* -------------\ (----) /----------------------------------------------------------- +
* \_) (_/
*/
// no direct access
defined( '_JEXEC' ) or die( 'Restricted access' );
class JDomHtmlLinkDefault extends JDomHtmlLink
{
var $level = 3; //Namespace position
var $last = true; //This class is last call
/*
* Constuctor
* @namespace : requested class
* @options : Configuration
* @href : Link
* @link_js : Javascript for the link
* @content : Content of the link
* @link_title : Title of the link (default : @content)
* @target : Target of the link (added to natives targets : 'modal')
* @domClass : CSS class of the link
* @modal_width : Modal width
* @modal_height : Modal height
*
*
*
*
*/
function __construct($args)
{
parent::__construct($args);
}
function build()
{
$html = $this->buildLink();
return $html;
}
}