This file is indexed.

/usr/share/horde/nag/lib/Form/Search.php is in php-horde-nag 4.2.17-1ubuntu1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<?php
/**
 * This file contains all Horde_Form extensions required for searching.
 *
 * See the enclosed file COPYING for license information (GPL). If you
 * did not receive this file, see http://www.horde.org/licenses/gpl.
 *
 * @package Nag
 */

/**
 * The Nag_Form_Search class provides the form for searching.
 *
 * @author  Michael J Rubinsky <mrubinsk@horde.org>
 * @package Nag
 */

class Nag_Form_Search extends Horde_Form
{

    public function __construct(&$vars, $title = '')
    {
        parent::__construct($vars, $title);

        $GLOBALS['page_output']->addScriptFile('form_helpers.js', 'horde');
        $this->addHidden('', 'smart_id', 'text', false);
        $this->addHidden('', 'actionID', 'text', false);
        $vars->set('actionID', 'search_tasks');
        $this->addVariable(_("Search Text:"), 'search_pattern', 'text', false);
        $v = $this->addVariable(
            _("Search In:"),
            'search_in',
            'set',
            false,
            false,
            false,
            array('values' => array(
                  'search_name' =>  _("Name"),
                  'search_desc' => _("Description")
            ))
        );
        $v->setDefault(array('search_name', 'search_desc'));

        $this->addVariable(_("Tagged with:"), 'search_tags', 'Nag:NagTags', false);
        $v = $this->addVariable(
            _("Search:"),
            'search_completed',
            'radio',
            false,
            false,
            false,
            array('values' => array(
                  Nag::VIEW_ALL => _("All"),
                  Nag::VIEW_COMPLETE => _("Completed"),
                  Nag::VIEW_INCOMPLETE => _("Incomplete")
            ))
        );
        $v->setDefault(Nag::VIEW_ALL);

        $this->addVariable(_("Due date:"), 'due_date', 'Nag:NagSearchDue', false);

        // If editing a SmartList, allow deletion.
        if ($vars->get('smart_id')) {
            $this->addVariable(_("SmartList Name:"), 'smartlist_name', 'text', false);
            $this->setButtons(_("Save"), _("Reset"));
            $this->appendButtons(array(array('value' => _("Delete Smart List"), 'name' => 'deletebutton', 'class' => 'horde-delete')));
        } else {
            $this->addVariable(_("Save this search as a Smart List?"), 'save_smartlist', 'boolean', false);
            $sl_name = $this->addVariable(_("Smart List Name:"), 'smartlist_name', 'text', false);
            $save_action = new Horde_Form_Action_ConditionalEnable(array('target' => 'save_smartlist', 'enabled' => true, 'values' => 'on'));
            $sl_name->setAction($save_action);
            $this->setButtons(_("Search"), _("Reset"));
        }

    }

    public function renderActive()
    {
        $url = Horde::url('list.php');
        if ($this->_vars->get('smart_id')) {
            // Editing an existing smartlist.
            $url->add(array('actionID' => 'smart', 'list' => $this->_vars->get('smart_id'), 'tab_name' => $this->_vars->get('smart_id')));
        }
        return parent::renderActive(
            $this->getRenderer(array('varrenderer_driver' => array('nag', 'nag'))),
            $this->_vars,
            $url->setRaw(true),
            'post');
    }

}