This file is indexed.

/usr/share/php/kohana2/modules/gmaps/views/gmaps/javascript.php is in libkohana2-modules-php 2.3.4-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
<?php defined('SYSPATH') OR die('No direct access allowed.'); ?>
google.load("maps", "2.x", {"language" : "<?php echo substr(Kohana::config('locale.language.0'), 0, 2);?>"});
function initialize() {
	if (GBrowserIsCompatible()) {
		// Initialize the GMap
		<?php echo $map, "\n" ?>
		<?php echo $controls, "\n" ?>
		<?php echo $center, "\n" ?>
		<?php echo $options->render(1), "\n" ?>
		<?php if ( ! empty($icons)): ?>

		// Build custom marker icons
		<?php foreach($icons as $icon): ?>
		<?php echo $icon->render(1), "\n" ?>
		<?php endforeach ?>
		<?php endif ?>

		// Show map points
		<?php foreach($markers as $marker): ?>
		<?php echo $marker->render(1), "\n" ?>
		<?php endforeach ?>
	}
}
google.setOnLoadCallback(initialize);