⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.72
Server IP:
41.128.143.86
Server:
Linux host.raqmix.cloud 6.8.0-1025-azure #30~22.04.1-Ubuntu SMP Wed Mar 12 15:28:20 UTC 2025 x86_64
Server Software:
Apache
PHP Version:
8.3.23
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
usr
/
share
/
psa-horde
/
turba
/
lib
/
Ui
/
VarRenderer
/
Edit File: Turba.php
<?php /** * This file contains all Horde_Core_Ui_VarRenderer extensions required for * editing contacts. * * See the enclosed file COPYING for license information (GPL). If you * did not receive this file, see http://www.horde.org/licenses/gpl. * * @package Turba */ /** * The Horde_Core_Ui_VarRenderer_Turba class provides additional methods for * rendering Turba specific fields. * * @todo Clean this hack up with Horde_Form/H4 * @author Jan Schneider <jan@horde.org> * @package Turba */ class Horde_Core_Ui_VarRenderer_Turba extends Horde_Core_Ui_VarRenderer_Html { /** * Render tag field. */ protected function _renderVarInput_TurbaTags($form, $var, $vars) { $varname = htmlspecialchars($var->getVarName()); $value = htmlspecialchars($var->getValue($vars)); $html = sprintf('<input id="%s" type="text" name="%s" value="%s" />', $varname, $varname, $value); $html .= sprintf('<span id="%s_loading_img" style="display:none;">%s</span>', $varname, Horde_Themes_Image::tag('loading.gif', array('alt' => _("Loading...")))); $GLOBALS['injector']->getInstance('Horde_Core_Factory_Imple')->create('Turba_Ajax_Imple_TagAutoCompleter', array('id' => $varname)); return $html; } }
Simpan