[ SYSTEM ]: Windows NT SWD-ELEARN-11 10.0 build 20348 (Windows Server 2016) AMD64
[ SERVER ]: Apache/2.4.41 (Win64) OpenSSL/1.1.1c PHP/7.3.9 | PHP: 7.3.9
[ USER ]: Elearn | IP: 10.201.204.156
GEFORCE FILE MANAGER
/
C:
/
xampp
/
htdocs
/
Ajaji
/
backup
/
libraries
/
joomla
/
form
/
fields
/
UPLOAD:
NAME
SIZE
QUICK PERMS
ACTIONS
📄 aliastag.php
1,666 B
SET
[ EDIT ]
|
[ DEL ]
📄 calendar.php
9,307 B
SET
[ EDIT ]
|
[ DEL ]
📄 checkbox.php
4,366 B
SET
[ EDIT ]
|
[ DEL ]
📄 color.php
6,677 B
SET
[ EDIT ]
|
[ DEL ]
📄 combo.php
1,458 B
SET
[ EDIT ]
|
[ DEL ]
📄 email.php
1,482 B
SET
[ EDIT ]
|
[ DEL ]
📄 file.php
3,407 B
SET
[ EDIT ]
|
[ DEL ]
📄 filelist.php
5,663 B
SET
[ EDIT ]
|
[ DEL ]
📄 groupedlist.php
5,490 B
SET
[ EDIT ]
|
[ DEL ]
📄 hidden.php
1,235 B
SET
[ EDIT ]
|
[ DEL ]
📄 imagelist.php
953 B
SET
[ EDIT ]
|
[ DEL ]
📄 language.php
2,070 B
SET
[ EDIT ]
|
[ DEL ]
📄 list.php
7,439 B
SET
[ EDIT ]
|
[ DEL ]
📄 number.php
4,902 B
SET
[ EDIT ]
|
[ DEL ]
📄 password.php
4,512 B
SET
[ EDIT ]
|
[ DEL ]
📄 radio.php
1,508 B
SET
[ EDIT ]
|
[ DEL ]
📄 subform.php
9,326 B
SET
[ EDIT ]
|
[ DEL ]
📄 tel.php
1,614 B
SET
[ EDIT ]
|
[ DEL ]
📄 text.php
6,816 B
SET
[ EDIT ]
|
[ DEL ]
📄 textarea.php
4,187 B
SET
[ EDIT ]
|
[ DEL ]
📄 timezone.php
3,916 B
SET
[ EDIT ]
|
[ DEL ]
📄 url.php
1,817 B
SET
[ EDIT ]
|
[ DEL ]
📄 usergroup.php
2,413 B
SET
[ EDIT ]
|
[ DEL ]
DELETE SELECTED
[ CLOSE ]
EDIT: radio.php
<?php /** * @package Joomla.Platform * @subpackage Form * * @copyright (C) 2009 Open Source Matters, Inc. <https://www.joomla.org> * @license GNU General Public License version 2 or later; see LICENSE */ defined('JPATH_PLATFORM') or die; JFormHelper::loadFieldClass('list'); /** * Form Field class for the Joomla Platform. * Provides radio button inputs * * @link http://www.w3.org/TR/html-markup/command.radio.html#command.radio * @since 1.7.0 */ class JFormFieldRadio extends JFormFieldList { /** * The form field type. * * @var string * @since 1.7.0 */ protected $type = 'Radio'; /** * Name of the layout being used to render the field * * @var string * @since 3.5 */ protected $layout = 'joomla.form.field.radio'; /** * Method to get the radio button field input markup. * * @return string The field input markup. * * @since 1.7.0 */ protected function getInput() { if (empty($this->layout)) { throw new UnexpectedValueException(sprintf('%s has no layout assigned.', $this->name)); } return $this->getRenderer($this->layout)->render($this->getLayoutData()); } /** * Method to get the data to be passed to the layout for rendering. * * @return array * * @since 3.5 */ protected function getLayoutData() { $data = parent::getLayoutData(); $extraData = array( 'options' => $this->getOptions(), 'value' => (string) $this->value, ); return array_merge($data, $extraData); } }