| Current Path : /var/www/libraries/jdom/html/hook/ |
| Current File : /var/www/libraries/jdom/html/hook/node.php |
<?php
/** ______________________________________________
* o O | |
* ((((( o < JDom Class - Cook Self Service library |
* ( o o ) |______________________________________________|
* --------oOOO-----(_)-----OOOo---------------------------------- www.j-cook.pro --- +
* @version 2.5
* @package Cook Self Service
* @subpackage JDom
* @license GNU General Public License
* @author Jocelyn HUARD
*
* .oooO Oooo.
* ( ) ( )
* -------------\ (----) /----------------------------------------------------------- +
* \_) (_/
*/
// no direct access
defined( '_JEXEC' ) or die( 'Restricted access' );
class JDomHtmlHookNode extends JDomHtmlHook
{
/*
* Constuctor
* @namespace : requested class
* @options : Configuration
* @dataKey : database field name
* @dataObject : complete object row (stdClass or Array)
* @dataValue : value default = dataObject->dataKey
* @domID : HTML id (DOM) default=dataKey
* @ajaxContext: Ajax context (extension.view.layout.render) extension without 'com_'
* @ajaxWrapper: Ajax Dom div wich will be filled with the result
* @ajaxVars : Extends of override the ajax query
*
*
*/
function __construct($args)
{
parent::__construct($args);
}
function build()
{
$html = "\n" . "<div id='" . $this->domId . "'"
. "></div>";
return $html;
}
}