This file is indexed.

/usr/share/php/Horde/Service/Facebook/Fql.php is in php-horde-service-facebook 2.0.6-2.

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
<?php
/**
 * Execute FQL  queries
 *
 * Copyright 2009-2013 Horde LLC (http://www.horde.org/)
 *
 * @author Michael J. Rubinsky <mrubinsk@horde.org>
 * @category Horde
 * @package Service_Facebook
 */
class Horde_Service_Facebook_Fql extends Horde_Service_Facebook_Base
{
    /**
     * Run a FQL query, optionally including the current session_key.
     *
     * http://developers.facebook.com/documentation.php?v=1.0&doc=fql
     *
     * @param string $query             The FQL to run.
     *
     * @return array Hashes containing results.
     */
    public function run($query)
    {
        $params = array('query' => $query);

        return $this->_facebook->callMethod('facebook.fql.query', $params);
    }

}