This file is indexed.

/usr/share/horde/sesha/lib/Entity/Value.php is in php-horde-sesha 1.0.0~beta1-11ubuntu1.

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
<?php
/**
 * A Sesha_Entity_Value is an object representing the value(s) for a property in the context of a specific inventory item
 * This is the ORM encapsulation of a row in the sesha_inventory_properties table.
 *
 * @author   Ralf Lang <lang@b1-systems.de>
 * @category Horde
 * @package  Sesha
 */
class Sesha_Entity_Value extends Horde_Rdo_Base
{

    /**
     * Retrieve the txt_datavalue or int_datavalue depending on context
     */
    public function getDataValue()
    {
        return $this->txt_datavalue;
    }

    /**
     * Save the txt_datavalue or int_datavalue depending on context
     */
    public function setDataValue($value)
    {
        return $this->txt_datavalue = $value;
    }
}