This file is indexed.

/usr/share/doc/php-horde-view/examples/view.php is in php-horde-view 2.0.3-1.

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
/**
 * @package View
 */

require 'Horde/Autoloader.php';

// use a model to get the data for book authors and titles.
$data = array(
              array(
                    'author' => 'Hernando de Soto',
        'title' => 'The Mystery of Capitalism'
                    ),
              array(
                    'author' => 'Henry Hazlitt',
        'title' => 'Economics in One Lesson'
                    ),
              array(
                    'author' => 'Milton Friedman',
        'title' => 'Free to Choose'
                    )
              );

$view = new Horde_View;
$view->books = $data;

// and render a template called "template.php"
echo $view->render('template.php');