芝麻web文件管理V1.00
编辑当前文件:/home/provyohx/public_html/plugins__c0c73d1/system/helixultimate/fields/helixmedia.php
* @copyright Copyright (c) 2010 - 2025 JoomShaper * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or Later */ defined('_JEXEC') or die(); use Joomla\CMS\Uri\Uri; use Joomla\CMS\Form\FormField; /** * Form field for Helix media * * @since 1.0.0 * @deprecated 3.0 Use the Same Class from the src/fields instead. */ class JFormFieldHelixmedia extends FormField { /** * Field type * * @var string $type * @since 1.0.0 */ protected $type = 'Helixmedia'; /** * Override getInput function form FormField * * @return string Field HTML string * @since 1.0.0 */ public function getInput() { $output = '
'; if (!empty($this->value)) { $output .= '
'; } $output .= '
'; $output .= '
'; $output .= '
Select
'; $output .= '
Clear
'; return $output; } }