AAAAhome/academiac/www/libraries/joomla/html/parameter/element.php 0000644 00000007531 15137265053 0020547 0 ustar 00 _parent = $parent;
}
/**
* Get the element name
*
* @return string type of the parameter
*
* @since 11.1
* @deprecated 12.1
*/
public function getName()
{
// Deprecation warning.
JLog::add('Jelement::getName is deprecated.', JLog::WARNING, 'deprecated');
return $this->_name;
}
/**
* Method to render an xml element
*
* @param string &$xmlElement Name of the element
* @param string $value Value of the element
* @param string $control_name Name of the control
*
* @return array Attributes of an element
*
* @deprecated 12.1
* @since 11.1
*/
public function render(&$xmlElement, $value, $control_name = 'params')
{
// Deprecation warning.
JLog::add('JElement::render is deprecated.', JLog::WARNING, 'deprecated');
$name = $xmlElement->attributes('name');
$label = $xmlElement->attributes('label');
$descr = $xmlElement->attributes('description');
//make sure we have a valid label
$label = $label ? $label : $name;
$result[0] = $this->fetchTooltip($label, $descr, $xmlElement, $control_name, $name);
$result[1] = $this->fetchElement($name, $value, $xmlElement, $control_name);
$result[2] = $descr;
$result[3] = $label;
$result[4] = $value;
$result[5] = $name;
return $result;
}
/**
* Method to get a tool tip from an XML element
*
* @param string $label Label attribute for the element
* @param string $description Description attribute for the element
* @param JXMLElement &$xmlElement The element object
* @param string $control_name Control name
* @param string $name Name attribut
*
* @return string
*
* @deprecated 12.1
* @since 11.1
*/
public function fetchTooltip($label, $description, &$xmlElement, $control_name = '', $name = '')
{
// Deprecation warning.
JLog::add('JElement::fetchTooltip is deprecated.', JLog::WARNING, 'deprecated');
$output = '';
return $output;
}
/**
* Fetch an element
*
* @param string $name Name attribute of the element
* @param string $value Value attribute of the element
* @param JXMLElement &$xmlElement Element object
* @param string $control_name Control name of the element
*
* @return void
*
* @deprecated 12.1
* @since 11.1
*/
public function fetchElement($name, $value, &$xmlElement, $control_name)
{
// Deprecation warning.
JLog::add('JElement::fetchElement is deprecated.', JLog::WARNING, 'deprecated');
}
}