This file is indexed.

/usr/share/php/kohana3.1/system/guide/kohana/helpers.md is in libkohana3.1-core-php 3.1.5-1.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
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
# Helpers

Kohana comes with many static "helper" functions to make certain tasks easier.

You can make your own helpers by simply making a class and putting it in the `classes` directory, and you can also extend any helper to modify or add new functions using transparent extension.

 - **[Arr]** - Array functions.  Get an array key or default to a set value, get an array key by path, etc.

 - **[CLI]** - Parse command line options.

 - **[Cookie]** - Covered in more detail on the [Cookies](cookies) page.

 - **[Date]** - Useful date functions and constants. Time between two dates, convert between am/pm and military, date offset, etc.
 
 - **[Encrypt]** - Covered in more detail on the [Security](security) page.
 
 - **[Feed]** - Parse and create RSS feeds.
 
 - **[File]** - Get file type by mime, split and merge a file into small pieces.
 
 - **[Form]** - Create HTML form elements. 
 
 - **[Fragment]** - Simple file based caching. Covered in more detail on the [Fragments](fragments) page.

 - **[HTML]** - Useful HTML functions. Encode, obfuscate, create script, anchor, and image tags, etc.
 
 - **[I18n]** - Internationalization helper for creating multilanguage sites.
 
 - **[Inflector]** - Change a word into plural or singular form, camelize or humanize a phrase, etc.
 
 - **[Kohana]** - The Kohana class is also a helper.  Debug variables (like print_r but better), file loading, etc.
 
 - **[Num]** - Provides locale aware formating and english ordinals (th, st, nd, etc).
 
 - **[Profiler]** - Covered in more detail on the [Profiling](profiling) page.

 - **[Remote]** - Remote server access helper using [CURL](http://php.net/curl).
 
 - **[Request]** - Get the current request url, create expire tags, send a file, get the user agent, etc. 
 
 - **[Route]** - Create routes, create an internal link using a route.
 
 - **[Security]** - Covered in more detail on the [Security](security) page.
 
 - **[Session]** - Covered in more detail on the [Sessions](sessions) page.
 
 - **[Text]** - Autolink, prevent window words, convert a number to text, etc.
 
 - **[URL]** - Create a relative or absolute URL, make a URL-safe title, etc.
 
 - **[UTF8]** - Provides multi-byte aware string functions like strlen, strpos, substr, etc.
 
 - **[Upload]** - Helper for uploading files from a form.