|
System | : | Linux MiraNet 3.0.0-14-generic-pae #23-Ubuntu SMP Mon Nov 21 22:07:10 UTC 2011 i686 |
Software | : | Apache. PHP/5.3.6-13ubuntu3.10 |
ID | : | uid=65534(nobody) gid=65534(nogroup) groups=65534(nogroup)
|
|
Safe Mode | : | OFF |
Open_Basedir | : | OFF |
Freespace | : | 23.62 GB of 70.42 GB (33.54%) |
|
MySQL: ON MSSQL: OFF Oracle: OFF PostgreSQL: OFF Curl: OFF Sockets: ON Fetch: OFF Wget: ON Perl: ON |
Disabled Functions: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,
|
[ System Info ]
[ Processes ]
[ SQL Manager ]
[ Eval ]
[ Encoder ]
[ Mailer ]
[ Back Connection ]
[ Backdoor Server ]
[ Kernel Exploit Search ]
[ MD5 Decrypter ]
[ Reverse IP ]
[ Kill Shell ]
[ FTP Brute-Force ]
|
|
/
http/
guitar.1/
libraries/
joomla/
html/
parameter/
- drwxr-xr-x
|
Viewing file: element.php (3.84 KB) -rw-r--r--Select action/file-type:  ( +) |  ( +) |  ( +) | Code ( +) | Session ( +) |  ( +) | SDB ( +) |  ( +) |  ( +) |  ( +) |  ( +) |  ( +) |
<?php /** * @package Joomla.Platform * @subpackage HTML * * @copyright Copyright (C) 2005 - 2012 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE */
defined('JPATH_PLATFORM') or die;
/** * Parameter base class * * The JElement is the base class for all JElement types * * @package Joomla.Platform * @subpackage Parameter * @since 11.1 * @deprecated 12.1 Use JFormField instead */ class JElement extends JObject { /** * Element name * * This has to be set in the final * renderer classes. * * @var string * @since 11.1 */ protected $_name = null;
/** * Reference to the object that instantiated the element * * @var object * @since 11.1 */ protected $_parent = null;
/** * Constructor * * @param string $parent Element parent * * @since 11.1 */ public function __construct($parent = null) { // Deprecation warning. JLog::add('JElement::__construct is deprecated.', JLog::WARNING, 'deprecated');
$this->_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 = '<label id="' . $control_name . $name . '-lbl" for="' . $control_name . $name . '"'; if ($description) { $output .= ' class="hasTip" title="' . JText::_($label) . '::' . JText::_($description) . '">'; } else { $output .= '>'; } $output .= JText::_($label) . '</label>';
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');
} }
|