This file is indexed.

/usr/share/horde/sesha/lib/Factory/Driver.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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<?php

class Sesha_Factory_Driver extends Horde_Core_Factory_Base
{
    private $_instances = array();

    /**
     * A Factory for the Sesha_Driver. Currently only Rdo is implemented
     * @param string name  An arbitrary name string to identify the driver instance
     * @param array params  a hash of driver parameters. For the Rdo driver, these are the parameters for creating a Horde_Db_Adapter
     * @return Horde_Rdo_Driver  A concrete instance of Horde_Rdo_Driver with all necessary dependencies injected
     */
    public function create($name = '', $params = array())
    {
        if (!isset($this->_instances[$name])) {
            if (!empty($params['driver'])) {
                $driver = $params['driver'];
                unset($params['driver']);
            } else {
                $driver = $GLOBALS['conf']['storage']['driver'];
                $params = Horde::getDriverConfig('storage', $driver);
            }
            $class = 'Sesha_Driver_' . ucfirst(basename($driver));

            if (!class_exists($class)) {
                throw new Sesha_Exception(sprintf('Unable to load the definition of %s.', $class));
            }

            switch ($class) {
            case 'Sesha_Driver_Rdo':
                if (empty($params['db'])) {
                    $params['db'] = $this->_injector->getInstance('Horde_Core_Factory_Db')->create('sesha', $params);
                }
                break;
            }
            $this->_instances[$name] = new $class($params);
        }

        return $this->_instances[$name];
    }

}