[ 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
/
src
/
Form
/
Field
/
UPLOAD:
NAME
SIZE
QUICK PERMS
ACTIONS
📄 AuthorField.php
1,553 B
SET
[ EDIT ]
|
[ DEL ]
📄 ChromestyleField.php
5,688 B
SET
[ EDIT ]
|
[ DEL ]
📄 ContenthistoryField.php
1,929 B
SET
[ EDIT ]
|
[ DEL ]
📄 ContentlanguageField.php
928 B
SET
[ EDIT ]
|
[ DEL ]
📄 EditorField.php
7,694 B
SET
[ EDIT ]
|
[ DEL ]
📄 MediaField.php
6,277 B
SET
[ EDIT ]
|
[ DEL ]
📄 MenuitemField.php
6,034 B
SET
[ EDIT ]
|
[ DEL ]
📄 OrderingField.php
4,784 B
SET
[ EDIT ]
|
[ DEL ]
📄 TagField.php
5,687 B
SET
[ EDIT ]
|
[ DEL ]
📄 TemplatestyleField.php
4,754 B
SET
[ EDIT ]
|
[ DEL ]
📄 UsergrouplistField.php
2,791 B
SET
[ EDIT ]
|
[ DEL ]
DELETE SELECTED
[ CLOSE ]
EDIT: ContentlanguageField.php
<?php /** * Joomla! Content Management System * * @copyright (C) 2009 Open Source Matters, Inc. <https://www.joomla.org> * @license GNU General Public License version 2 or later; see LICENSE.txt */ namespace Joomla\CMS\Form\Field; defined('JPATH_PLATFORM') or die; use Joomla\CMS\Form\FormHelper; FormHelper::loadFieldClass('list'); /** * Provides a list of content languages * * @see JFormFieldLanguage for a select list of application languages. * @since 1.6 */ class ContentlanguageField extends \JFormFieldList { /** * The form field type. * * @var string * @since 1.6 */ public $type = 'ContentLanguage'; /** * Method to get the field options for content languages. * * @return array The options the field is going to show. * * @since 1.6 */ protected function getOptions() { return array_merge(parent::getOptions(), \JHtml::_('contentlanguage.existing')); } }