⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.191
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
/
Minimal
/
View File Name :
Search.php
* @category Horde * @license http://www.horde.org/licenses/gpl GPL * @package IMP */ class IMP_Minimal_Search extends IMP_Minimal_Base { /** * URL Parameters: * - a: (string) Action ID. * - checkbox: TODO * - mt: TODO * - p: (integer) Page. * - search: (sring) The search string * - start: (integer) Start. */ protected function _init() { $this->title = sprintf(_("Search %s"), $this->indicees->mailbox->display); $this->view->mailbox = $this->indices->mailbox->form_to; $this->view->menu = $this->getMenu('search'); $this->view->title = $this->title; $this->view->url = IMP_Minimal_Mailbox::url(); $this->_pages[] = 'search'; $this->_pages[] = 'menu'; } /** * @param array $opts Options: * - mailbox: (string) The mailbox to search. Defaults to INBOX. */ static public function url(array $opts = array()) { $opts = array_merge(array('mailbox' => 'INBOX'), $opts); return IMP_Mailbox::get($opts['mailbox'])->url('minimal')->add('page', 'search'); } }