Linux anchor 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64
Apache/2.4.18 (Ubuntu)
Server IP : 10.10.100.4 & Your IP : 216.73.217.150
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
lusedi /
plugins /
editors /
codemirror /
Delete
Unzip
Name
Size
Permission
Date
Action
layouts
[ DIR ]
drwxr-xr-x
2017-10-04 08:52
codemirror.php
9.55
KB
-rw-r--r--
2017-11-07 06:31
codemirror.xml
9.03
KB
-rw-r--r--
2017-11-07 06:31
fonts.json
2.61
KB
-rw-r--r--
2017-11-07 06:31
fonts.php
1.08
KB
-rw-r--r--
2017-11-07 06:31
Save
Rename
<?php /** * @package Joomla.Plugin * @subpackage Editors.codemirror * * @copyright Copyright (C) 2005 - 2017 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ // No direct access defined('_JEXEC') or die; JFormHelper::loadFieldClass('list'); /** * Supports an HTML select list of fonts * * @package Joomla.Plugin * @subpackage Editors.codemirror * @since 3.4 */ class JFormFieldFonts extends JFormFieldList { /** * The form field type. * * @var string * @since 3.4 */ protected $type = 'Fonts'; /** * Method to get the list of fonts field options. * * @return array The field option objects. * * @since 3.4 */ protected function getOptions() { $fonts = json_decode(file_get_contents(__DIR__ . '/fonts.json')); $options = array(); foreach ($fonts as $key => $info) { $options[] = JHtml::_('select.option', $key, $info->name); } // Merge any additional options in the XML definition. return array_merge(parent::getOptions(), $options); } }