This file is indexed.

/usr/share/php/kohana2/modules/flot/libraries/Flot.php is in libkohana2-modules-php 2.3.4-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
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
<?php defined('SYSPATH') OR die('No direct access allowed.');
/**
 * Flot (jQuery plotting plugin) Kohana integration.
 *
 * $Id: Flot.php 3769 2008-12-15 00:48:56Z zombor $
 *
 * @package    Flot
 * @author     Woody Gilk
 * @copyright  (c) 2007-2008 Kohana Team
 * @license    http://kohanaphp.com/license.html
 */
class Flot_Core {

	// Container type and attributes
	protected $type = 'div';
	protected $attr = array();

	// Dataset and options
	protected $dataset;
	protected $options;

	public function __construct($id, $attr = array(), $type = NULL)
	{
		// Set the id to the attributes
		$attr['id'] = $id;

		// Set the attributes of the container
		$this->attr += $attr;

		// Set the type, if not NULL
		empty($type) or $this->type = $type;

		// Create the data set array
		$this->dataset = array();

		// Create the options object
		$this->options = new StdClass;
	}

	public function __get($key)
	{
		if ( ! isset($this->options->$key))
		{
			// Create the object if it does not exist
			$this->options->$key = new StdClass;
		}

		// Return the option
		return $this->options->$key;
	}

	public function __set($key, $value)
	{
		// Set the option value
		$this->options->$key = $value;
	}

	/**
	 * Return the rendered graph as an HTML string.
	 *
	 * @return string
	 */
	public function __toString()
	{
		return $this->render();
	}

	/**
	 * Add data to the data set.
	 *
	 * @chainable
	 * @param   object   a constructed Flot_Dataset
	 * @return  object
	 */
	public function add(Flot_Dataset $set, $label = NULL)
	{
		// Add the label, if requested
		empty($label) or $set->label = $label;

		// Add the set to the current data set
		$this->dataset[] = $set;

		return $this;
	}

	/**
	 * Set options.
	 *
	 * @chainable
	 * @param   string  option name
	 * @param   mixed   options value
	 * @return  object
	 */
	public function set($key, $value)
	{
		// Set the requested value
		$this->__set($key, $value);

		return $this;
	}

	/**
	 * Return the rendered graph as an HTML string.
	 *
	 * @return string
	 */
	public function render($template = 'kohana_flot')
	{
		// Load the template
		return View::factory($template)
			// Set container properties
			->set('type', $this->type)
			->set('attr', $this->attr)
			// JSON encode the dataset and options
			->set('dataset', array_map('json_encode', $this->dataset))
			->set('options', json_encode($this->options))
			// And return the rendered view
			->render();
	}

} // End Flot