This file is indexed.

/usr/share/php/Icinga/Web/Form/Decorator/Spinner.php is in php-icinga 2.1.0-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
<?php
/* Icinga Web 2 | (c) 2013-2015 Icinga Development Team | GPLv2+ */

namespace Icinga\Web\Form\Decorator;

use Zend_Form_Decorator_Abstract;
use Icinga\Application\Icinga;
use Icinga\Web\View;

/**
 * Decorator to add a spinner next to an element
 */
class Spinner extends Zend_Form_Decorator_Abstract
{
    /**
     * Return the current view
     *
     * @return  View
     */
    protected function getView()
    {
        return Icinga::app()->getViewRenderer()->view;
    }

    /**
     * Add a spinner icon to a form element
     *
     * @param   string      $content    The html rendered so far
     *
     * @return  string                  The updated html
     */
    public function render($content = '')
    {
        $spinner = '<div '
            . ($this->getOption('id') !== null ? ' id="' . $this->getOption('id') . '"' : '')
            . 'class="spinner ' . ($this->getOption('class') ?: '') . '"'
            . '>'
            . $this->getView()->icon('spin6')
            . '</div>';

        switch ($this->getPlacement()) {
            case self::APPEND:
                return $content . $spinner;
            case self::PREPEND:
                return $spinner . $content;
        }
    }
}