⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.78
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-pear
/
pear
/
php
/
Horde
/
Form
/
View File Name :
Action.php
* @category Horde * @license http://www.horde.org/licenses/lgpl21 LGPL * @package Form */ /** * The Horde_Form_Action class provides an API for adding actions to * Horde_Form variables. * * @author Chuck Hagenbuch
* @category Horde * @copyright 2002-2017 Horde LLC * @license http://www.horde.org/licenses/lgpl21 LGPL * @package Form */ class Horde_Form_Action { var $_id; var $_params; var $_trigger = null; function Horde_Form_Action($params = null) { $this->_params = $params; $this->_id = md5(mt_rand()); } function getTrigger() { return $this->_trigger; } function id() { return $this->_id; } function getActionScript($form, $renderer, $varname) { return ''; } function printJavaScript() { } function getTarget() { return isset($this->_params['target']) ? $this->_params['target'] : null; } function setValues(&$vars, $sourceVal, $index = null, $arrayVal = false) { } /** * Attempts to return a concrete Horde_Form_Action instance * based on $form. * * @param mixed $action The type of concrete Horde_Form_Action subclass * to return. If $action is an array, then we will look * in $action[0]/lib/Form/Action/ for the subclass * implementation named $action[1].php. * @param array $params A hash containing any additional configuration a * form might need. * * @return Horde_Form_Action The concrete Horde_Form_Action reference, or * false on an error. */ function &factory($action, $params = null) { if (is_array($action)) { $app = $action[0]; $action = $action[1]; } $action = basename($action); $class = 'Horde_Form_Action_' . $action; if (!class_exists($class)) { if (!empty($app)) { include_once $GLOBALS['registry']->get('fileroot', $app) . '/lib/Form/Action/' . $action . '.php'; } } if (class_exists($class)) { $instance = new $class($params); } else { $instance = PEAR::raiseError('Class definition of ' . $class . ' not found.'); } return $instance; } /** * Attempts to return a reference to a concrete * Horde_Form_Action instance based on $action. It will only * create a new instance if no Horde_Form_Action instance with * the same parameters currently exists. * * This should be used if multiple types of form renderers (and, * thus, multiple Horde_Form_Action instances) are required. * * This method must be invoked as: $var = * &Horde_Form_Action::singleton() * * @param mixed $action The type of concrete Horde_Form_Action subclass to return. * The code is dynamically included. If $action is an array, * then we will look in $action[0]/lib/Form/Action/ for * the subclass implementation named $action[1].php. * @param array $params A hash containing any additional configuration a * form might need. * * @return Horde_Form_Action The concrete Horde_Form_Action reference, or * false on an error. */ function &singleton($action, $params = null) { static $instances = array(); $signature = serialize(array($action, $params)); if (!isset($instances[$signature])) { $instances[$signature] = &Horde_Form_Action::factory($action, $params); } return $instances[$signature]; } }