⚝
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-pear
/
pear
/
php
/
Horde
/
Edit File: Editor.php
<?php /** * Copyright 2003-2017 Horde LLC (http://www.horde.org/) * * See the enclosed file COPYING for license information (LGPL). If you * did not receive this file, see http://www.horde.org/licenses/lgpl21. * * @author Nuno Loureiro <nuno@co.sapo.pt> * @author Michael Slusarz <slusarz@horde.org> * @category Horde * @license http://www.horde.org/licenses/lgpl21 LGPL * @package Editor */ /** * The Horde_Editor:: package provides an API to generate the code necessary * for embedding javascript RTE editors in a web page. * * @author Nuno Loureiro <nuno@co.sapo.pt> * @author Michael Slusarz <slusarz@horde.org> * @category Horde * @copyright 2003-2017 Horde LLC * @license http://www.horde.org/licenses/lgpl21 LGPL * @package Editor */ class Horde_Editor { /** * A browser detection object. * * @var Horde_Browser */ protected $_browser; /** * Javascript code to init the editor. * * @var string */ protected $_js = ''; /** * Constructor. * * @param array $params The following configuration parameters: * - browser: (Horde_Browser) A browser object. */ public function __construct(Horde_Browser $browser) { $this->_browser = $browser; } /** * Initialize the editor. * * @param array $params Additional parameters. */ public function initialize(array $params = array()) { } /** * Returns the JS code needed to instantiate the editor. * * @return array Two keys: * - files: (array) Javascript files that need to be loaded by browser. * - scrips: (array) Code that needs to be run on the browser. */ public function getJS() { return $this->_js; } /** * Does the current browser support the Horde_Editor driver. * * @return boolean True if the browser supports the editor. */ public function supportedByBrowser() { return false; } }
Simpan