* @category Horde * @copyright 2010-2017 Horde LLC * @license http://www.horde.org/licenses/gpl GPL * @package IMP */ class IMP_Search_Element_Or extends IMP_Search_Element { /** */ public function createQuery($mbox, $queryob) { $ob = new Horde_Imap_Client_Search_Query(); $ob->orSearch($queryob); return $ob; } /** */ public function queryText() { return _("OR"); } }