43 lines
898 B
PHP
43 lines
898 B
PHP
<?php
|
|
/**
|
|
* Copyright 2010-2017 Horde LLC (http://www.horde.org/)
|
|
*
|
|
* See the enclosed file COPYING for license information (GPL). If you
|
|
* did not receive this file, see http://www.horde.org/licenses/gpl.
|
|
*
|
|
* @category Horde
|
|
* @copyright 2010-2017 Horde LLC
|
|
* @license http://www.horde.org/licenses/gpl GPL
|
|
* @package IMP
|
|
*/
|
|
|
|
/**
|
|
* Handles an OR clause in a search query.
|
|
*
|
|
* @author Michael Slusarz <slusarz@horde.org>
|
|
* @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");
|
|
}
|
|
|
|
}
|