⚝
One Hat Cyber Team
⚝
Your IP:
216.73.217.4
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
/
mnemo
/
lib
/
Notepads
/
View File Name :
Default.php
* @author Gunnar Wrobel
* @license http://www.horde.org/licenses/apache * @link http://www.horde.org/apps/mnemo */ /** * The default notepads handler. * * Copyright 2001-2017 Horde LLC (http://www.horde.org/) * * See the enclosed file LICENSE for license information (ASL). If you * did not receive this file, see http://www.horde.org/licenses/apache. * * @category Horde * @package Mnemo * @author Jon Parise
* @author Gunnar Wrobel
* @license http://www.horde.org/licenses/apache * @link http://www.horde.org/apps/mnemo */ class Mnemo_Notepads_Default extends Mnemo_Notepads_Base { /** * The current identity. * * @var Horde_Prefs_Identity */ private $_identity; /** * Constructor. * * @param Horde_Share_Base $shares The share backend. * @param string $user The current user. * @param array $params Additional parameters. */ public function __construct($shares, $user, $params) { if (!isset($params['identity'])) { throw new BadMethodCallException('This notepad handler needs an "identity" parameter!'); } else { $this->_identity = $params['identity']; unset($params['identity']); } parent::__construct($shares, $user, $params); } /** * Return the name of the default share. * * @return string The name of a default share. */ protected function _getDefaultShareName() { return sprintf(_("Notepad of %s"), $this->_identity->getName()); } }