* @category Horde * @copyright 2010-2017 Horde LLC * @license http://www.horde.org/licenses/gpl GPL * @package IMP */ class IMP_Search_Filter_Attachment extends IMP_Search_Filter_Builtin { /** */ protected function _init() { $this->_id = 'filter_attach'; $this->_label = _("Messages with Attachments"); $this->add(new IMP_Search_Element_Attachment()); } }