Deprecated: Unparenthesized `a ? b : c ? d : e` is deprecated. Use either `(a ? b : c) ? d : e` or `a ? b : (c ? d : e)` in /var/www/vhosts/artiplayer.com/httpdocs/bonfire/ci3/helpers/url_helper.php on line 162

Deprecated: Array and string offset access syntax with curly braces is deprecated in /var/www/vhosts/artiplayer.com/httpdocs/bonfire/helpers/markdown_helper.php on line 953

Deprecated: Array and string offset access syntax with curly braces is deprecated in /var/www/vhosts/artiplayer.com/httpdocs/bonfire/helpers/markdown_helper.php on line 1249

Deprecated: Array and string offset access syntax with curly braces is deprecated in /var/www/vhosts/artiplayer.com/httpdocs/bonfire/helpers/markdown_helper.php on line 1274

Deprecated: Array and string offset access syntax with curly braces is deprecated in /var/www/vhosts/artiplayer.com/httpdocs/bonfire/helpers/markdown_helper.php on line 1607

Deprecated: Array and string offset access syntax with curly braces is deprecated in /var/www/vhosts/artiplayer.com/httpdocs/bonfire/helpers/markdown_helper.php on line 1609

Deprecated: Array and string offset access syntax with curly braces is deprecated in /var/www/vhosts/artiplayer.com/httpdocs/bonfire/helpers/markdown_helper.php on line 1834

Deprecated: Array and string offset access syntax with curly braces is deprecated in /var/www/vhosts/artiplayer.com/httpdocs/bonfire/helpers/markdown_helper.php on line 1836

Deprecated: Array and string offset access syntax with curly braces is deprecated in /var/www/vhosts/artiplayer.com/httpdocs/bonfire/helpers/markdown_helper.php on line 2075

Deprecated: Array and string offset access syntax with curly braces is deprecated in /var/www/vhosts/artiplayer.com/httpdocs/bonfire/helpers/markdown_helper.php on line 2112

Deprecated: Array and string offset access syntax with curly braces is deprecated in /var/www/vhosts/artiplayer.com/httpdocs/bonfire/helpers/markdown_helper.php on line 2112

Deprecated: Array and string offset access syntax with curly braces is deprecated in /var/www/vhosts/artiplayer.com/httpdocs/bonfire/helpers/markdown_helper.php on line 2140

Deprecated: Array and string offset access syntax with curly braces is deprecated in /var/www/vhosts/artiplayer.com/httpdocs/bonfire/helpers/markdown_helper.php on line 2140

Deprecated: Array and string offset access syntax with curly braces is deprecated in /var/www/vhosts/artiplayer.com/httpdocs/bonfire/helpers/markdown_helper.php on line 2159

Deprecated: Array and string offset access syntax with curly braces is deprecated in /var/www/vhosts/artiplayer.com/httpdocs/bonfire/helpers/markdown_helper.php on line 2160

Deprecated: Array and string offset access syntax with curly braces is deprecated in /var/www/vhosts/artiplayer.com/httpdocs/bonfire/helpers/markdown_helper.php on line 2264

Deprecated: Array and string offset access syntax with curly braces is deprecated in /var/www/vhosts/artiplayer.com/httpdocs/bonfire/helpers/markdown_helper.php on line 2276

Deprecated: Array and string offset access syntax with curly braces is deprecated in /var/www/vhosts/artiplayer.com/httpdocs/bonfire/helpers/markdown_helper.php on line 2276

Deprecated: Array and string offset access syntax with curly braces is deprecated in /var/www/vhosts/artiplayer.com/httpdocs/bonfire/helpers/markdown_helper.php on line 2287

Deprecated: Array and string offset access syntax with curly braces is deprecated in /var/www/vhosts/artiplayer.com/httpdocs/bonfire/helpers/markdown_helper.php on line 2288

Deprecated: Array and string offset access syntax with curly braces is deprecated in /var/www/vhosts/artiplayer.com/httpdocs/bonfire/helpers/markdown_helper.php on line 2646

Deprecated: Array and string offset access syntax with curly braces is deprecated in /var/www/vhosts/artiplayer.com/httpdocs/bonfire/helpers/markdown_helper.php on line 2964

Deprecated: Array and string offset access syntax with curly braces is deprecated in /var/www/vhosts/artiplayer.com/httpdocs/application/libraries/Profiler.php on line 71

Deprecated: Array and string offset access syntax with curly braces is deprecated in /var/www/vhosts/artiplayer.com/httpdocs/application/libraries/Profiler.php on line 94

Deprecated: Array and string offset access syntax with curly braces is deprecated in /var/www/vhosts/artiplayer.com/httpdocs/application/libraries/Profiler.php on line 458
Docs - Artiplayer

Route

Bonfire includes a Route library to supplement the functionality provided by CodeIgniter's (and the Wiredesignz HMVC) router(s).
Additional information may be available in the section on Improved Routes.

Methods

map([$routes])

Combines the routes which have been defined in the Route class with the passed $routes.
This is intended to be used after all routes have been defined to merge CI's default $route array with routes defined with this Route library.

Note that in CI3 the 'translate_uri_dashes' setting should be set after calling this method.

Example:

$route['default_controller'] = 'home';
Route::resource('posts');
$route = Route::map($route);

$routes is an array of routes to merge with the routes defined by the Route library.
Usually, the variable passed into this method will be the CI $route array.

If a 'default_controller' route is not set in the passed $routes, it will be set to 'home' (or whatever value is defined in the Route library's protected $default_home property).

Returns the merged array, which should be assigned to the CI $route array.

any($from, $to[, $options[, $nested = false]])

Create a basic route.
In its most basic form, this method will create a route similar to defining a CI route in the form $route[$from] = $to;.

  • If the $options array contains a value in the 'as' key, the value will be used to configure a named route, allowing you to easily map names to pre-existing routes.
  • $nested may be set to a callable function to define your own handler for this route.

HTTP Verb-based routing

get($from, $to[, $options[, $nested = false]])

Creates a route which will only be accessible when the $_SERVER['REQUEST_METHOD'] indicates that the current request is a GET request.
The arguments match those in the any() method.

post($from, $to[, $options[, $nested = false]])

Creates a route which will only be accessible when the $_SERVER['REQUEST_METHOD'] indicates that the current request is a POST request.
The arguments match those in the any() method.

put($from, $to[, $options[, $nested = false]])

Creates a route which will only be accessible when the $_SERVER['REQUEST_METHOD'] indicates that the current request is a PUT request.
The arguments match those in the any() method.

delete($from, $to[, $options[, $nested = false]])

Creates a route which will only be accessible when the $_SERVER['REQUEST_METHOD'] indicates that the current request is a DELETE request.
The arguments match those in the any() method.

head($from, $to[, $options[, $nested = false]])

Creates a route which will only be accessible when the $_SERVER['REQUEST_METHOD'] indicates that the current request is a HEAD request.
The arguments match those in the any() method.

patch($from, $to[, $options[, $nested = false]])

Creates a route which will only be accessible when the $_SERVER['REQUEST_METHOD'] indicates that the current request is a PATCH request.
The arguments match those in the any() method.

options($from, $to[, $options[, $nested = false]])

Creates a route which will only be accessible when the $_SERVER['REQUEST_METHOD'] indicates that the current request is an OPTIONS request.
The arguments match those in the any() method.

block($paths)

Prevents access to an array of routes by setting each of the supplied values in the $paths array to an empty path.

If $paths is not an array, this method will do nothing.

context($name[, $controller[, $options]])

Provides a method for assigning controllers in modules to an area of the site based on the name of the controller.

Note that $options can be passed as the second argument if the $controller argument is not needed.

  • $name is the name of the URL segment for the context.
  • $controller is the controller name which will be mapped into this context. If not supplied, $name will be used for $controller.
  • $options is an array of options with the following (optional) keys:

    • 'offset' allows the numeric arguments in the $to portion of the route to be increased by the offset value (so, if 'offset' is 1, $1 becomes $2, $2 becomes $3, etc.).
    • 'home' allows the definition of a default route for the context.

named($name)

Returns the $from portion of a route which was previously saved as $name.
Returns null if a route was not found with the given $name.

prefix($name, Closure $callback)

Prefix a set of routes (defined in the $callback closure) with the $name prefix.
All routes defined in the closure will be defined with the $from portion of the route prefixed with $name (e.g. 'users' becomes 'api/users' if $name is 'api').

reset()

Resets the internal state of the Route library, eliminating any routes which have not already been output.

resources($name[, $options[, $nested = false]])

Creates a pre-defined set of HTTP-verb based routes for the $name controller.

  • $name specifies the name used in the $from portion of the routes.
  • $options may include the following keys:

    • 'controller' specifies a name to be used for the controller in the $to portion of the created routes (if not included, $name will be used).
    • 'module' specifies a module name to be included in the $to portion of the created routes.
    • 'constraint' specifies permitted values for ID arguments in get/put/delete routes, defaults to '([a-zA-Z0-9\-_]+)'.
    • 'offset' specifies an offset for numbered parameters in the route. Usually numbered parameters start at $1, but supplying an 'offset' allows starting the numbers at a higher value. For instance, setting 'offset' to 1 would cause the numbered parameters to start at $2.
  • $nested may be set to a callable function to define your own handler for these routes (note that the same handler will be used for all of the routes generated by this method).

Example:

Route::resources('photos');

Generates the following routes:

Verb Path Action used for
GET /photos index displaying a list of photos
GET /photos/new create_new return an HTML form for creating a photo
GET /photos/{id}/edit edit return the HTML form for editing a single photo
GET /photos/{id} show display a specific photo
POST /photos create create a new photo
PUT /photos/{id} update update a specific photo
DELETE /photos/{id} delete delete a specific photo
Profiler
Profiler Console 0 Load Time 202.2ms Memory Used 1.17 MB Database 4 Queries vars & Config Files 87

Console

Memory Usage

Benchmarks

14 ms Loading Time: Base Classes
142 ms Controller Execution Time ( Docs / Index )
202 ms Total Execution Time

Queries

0.0003 SELECT GET_LOCK('nfedunnf37d16mmji3tiv401ng', 300) AS ci_session_lockSpeed: 0.0003 - Possible keys: - Key Used: - Type: - Rows: - Extra: No tables used
0.0007 SELECT `data` FROM `ap_ci3_sessions` WHERE `id` = 'nfedunnf37d16mmji3tiv401ng'Speed: 0.0007 - Possible keys: - Key Used: - Type: - Rows: - Extra: Impossible WHERE noticed after reading const tables
0.0009 SHOW TABLES FROM `artiweb_db`
0.0003 SELECT * FROM `ap_settings`Speed: 0.0003 - Possible keys: - Key Used: - Type: ALL - Rows: 40 - Extra:
0.0023 Total Query Execution Time

Session User Data

__ci_last_regenerate 1732783793
requested_page https://104854.21dyvlrb.asia/docs/developer/route
previous_page https://104854.21dyvlrb.asia/docs/developer/route

GET DATA

No GET data exists

POST DATA

No POST data exists

URI STRING

docs/developer/route

CLASS/METHOD

docs/index

HTTP HEADERS

HTTP_ACCEPT */*
HTTP_USER_AGENT Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)
HTTP_CONNECTION close
SERVER_PORT 80
SERVER_NAME 104854.21dyvlrb.asia
REMOTE_ADDR 172.71.254.191
SERVER_SOFTWARE Apache
HTTP_ACCEPT_LANGUAGE
SCRIPT_NAME /index.php
REQUEST_METHOD GET
HTTP_HOST
REMOTE_HOST
CONTENT_TYPE
SERVER_PROTOCOL HTTP/1.1
QUERY_STRING
HTTP_ACCEPT_ENCODING gzip, br
HTTP_X_FORWARDED_FOR 18.119.161.216

CONFIG VARIABLES

base_url https://104854.21dyvlrb.asia/
index_page
uri_protocol AUTO
url_suffix
language english
charset UTF-8
enable_hooks true
subclass_prefix MY_
composer_autoload false
permitted_uri_chars a-z 0-9~%.:_-
allow_get_array true
enable_query_strings false
controller_trigger c
function_trigger m
directory_trigger d
log_threshold 0
log_path /var/www/vhosts/artiplayer.com/httpdocs/application/logs/
log_file_extension
log_file_permissions 420
log_date_format Y-m-d H:i:s
error_views_path
cache_path /var/www/vhosts/artiplayer.com/httpdocs/application/cache/
cache_query_string false
encryption_key d0680639b7b72a248f62d947aed47f62
sess_cookie_name bf_session
sess_expiration 7200
sess_time_to_update 300
sess_match_ip false
sess_expire_on_close false
sess_encrypt_cookie false
sess_use_database false
sess_table_name sessions
sess_match_useragent true
sess_driver database
sess_regenerate_destroy false
sess_save_path ci3_sessions
cookie_prefix
cookie_domain
cookie_path /
cookie_secure false
cookie_httponly false
standardize_newlines false
global_xss_filtering false
csrf_protection true
csrf_token_name ci_csrf_token
csrf_cookie_name ci_csrf_token
csrf_expire 7200
csrf_regenerate true
csrf_exclude_uris Array ( )
compress_output false
time_reference utc
rewrite_short_tags false
proxy_ips
bonfire.installed 1
site.default_user_timezone UM8
modules_locations Array ( [/var/www/vhosts/artiplayer.com/httpdocs/application/modules/] => ../../application/modules/ [/var/www/vhosts/artiplayer.com/httpdocs/bonfire/modules/] => ../../bonfire/modules/ )
site.backup_folder archives/
contexts Array ( [0] => content [1] => reports [2] => settings [3] => developer )
enable_activity_logging true
sparks_path ../sparks/
template.site_path /var/www/vhosts/artiplayer.com/httpdocs/public/
template.theme_paths Array ( [0] => themes )
template.default_layout index
template.ajax_layout ajax
template.use_mobile_themes false
template.default_theme default/
template.admin_theme admin
template.message_template <div class="alert alert-{type} alert-dismissable"> <button type="button" class="close" data-dismiss="alert" aria-hidden="true">×</button> <div>{message}</div> </div>
template.breadcrumb_symbol :
template.parse_views false
assets.directories Array ( [base] => assets [cache] => cache [css] => css [image] => images [js] => js [module] => module )
assets.js_opener $(document).ready(function() {
assets.js_closer });
assets.css_combine false
assets.js_combine false
assets.css_minify true
assets.js_minify true
assets.encrypt_name false
assets.encode false
assets.base_folder assets
assets.asset_folders Array ( [css] => css [js] => js [image] => images )
ui.current_shortcuts Array ( [form_save] => Array ( [description] => Save any form in the admin area. [action] => $("input[name=save]").click();return false; ) [create_new] => Array ( [description] => Create a new record in the module. [action] => window.location.href=$("a#create_new").attr("href"); ) [select_all] => Array ( [description] => Select all records in an index page. [action] => $("table input[type=checkbox]").click();return false; ) [delete] => Array ( [description] => Delete the record(s). [action] => $("#delete-me.btn-danger").click(); ) [module_index] => Array ( [description] => Return to the index of the current module. [action] => window.location.href=$("a#list").attr("href"); ) [goto_content] => Array ( [description] => Jump to the Content context. [action] => window.location.href=$("#tb_content").attr("href") ) [goto_reports] => Array ( [description] => Jump to the Reports context. [action] => window.location.href=$("#tb_reports").attr("href") ) [goto_settings] => Array ( [description] => Jump to the Settings context. [action] => window.location.href=$("#tb_settings").attr("href") ) [goto_developer] => Array ( [description] => Jump to the Developer context. [action] => window.location.href=$("#tb_developer").attr("href") ) )
emailer.write_to_file false
migrate.auto_core false
migrate.auto_app false
commonmark.valid_drivers Array ( [0] => Parsedown [1] => Markdown [2] => MarkdownExtra [3] => LeagueCommonMark )
commonmark.driver MarkdownExtended
docs.theme docs
docs.default_group developer
docs.show_dev_docs true
docs.show_app_docs true
docs.toc_file _toc.ini
docs.permitted_environments Array ( [0] => development [1] => testing [2] => production )

Files

application.php
/var/www/vhosts/artiplayer.com/httpdocs/application/config/application.php
autoload.php
/var/www/vhosts/artiplayer.com/httpdocs/application/config/autoload.php
config.php
/var/www/vhosts/artiplayer.com/httpdocs/application/config/config.php
constants.php
/var/www/vhosts/artiplayer.com/httpdocs/application/config/constants.php
database.php
/var/www/vhosts/artiplayer.com/httpdocs/application/config/database.php
events.php
/var/www/vhosts/artiplayer.com/httpdocs/application/config/events.php
hooks.php
/var/www/vhosts/artiplayer.com/httpdocs/application/config/hooks.php
mimes.php
/var/www/vhosts/artiplayer.com/httpdocs/application/config/mimes.php
profiler.php
/var/www/vhosts/artiplayer.com/httpdocs/application/config/profiler.php
routes.php
/var/www/vhosts/artiplayer.com/httpdocs/application/config/routes.php
Base_Controller.php
/var/www/vhosts/artiplayer.com/httpdocs/application/core/Base_Controller.php
MY_Model.php
/var/www/vhosts/artiplayer.com/httpdocs/application/core/MY_Model.php
App_hooks.php
/var/www/vhosts/artiplayer.com/httpdocs/application/hooks/App_hooks.php
application_lang.php
/var/www/vhosts/artiplayer.com/httpdocs/application/language/english/application_lang.php
Profiler.php
/var/www/vhosts/artiplayer.com/httpdocs/application/libraries/Profiler.php
Base.php
/var/www/vhosts/artiplayer.com/httpdocs/application/third_party/MX/Base.php
Config.php
/var/www/vhosts/artiplayer.com/httpdocs/application/third_party/MX/Config.php
Controller.php
/var/www/vhosts/artiplayer.com/httpdocs/application/third_party/MX/Controller.php
Lang.php
/var/www/vhosts/artiplayer.com/httpdocs/application/third_party/MX/Lang.php
Loader.php
/var/www/vhosts/artiplayer.com/httpdocs/application/third_party/MX/Loader.php
Benchmark.php
/var/www/vhosts/artiplayer.com/httpdocs/bonfire/ci3/core/Benchmark.php
CodeIgniter.php
/var/www/vhosts/artiplayer.com/httpdocs/bonfire/ci3/core/CodeIgniter.php
Common.php
/var/www/vhosts/artiplayer.com/httpdocs/bonfire/ci3/core/Common.php
Config.php
/var/www/vhosts/artiplayer.com/httpdocs/bonfire/ci3/core/Config.php
Controller.php
/var/www/vhosts/artiplayer.com/httpdocs/bonfire/ci3/core/Controller.php
Hooks.php
/var/www/vhosts/artiplayer.com/httpdocs/bonfire/ci3/core/Hooks.php
Input.php
/var/www/vhosts/artiplayer.com/httpdocs/bonfire/ci3/core/Input.php
Lang.php
/var/www/vhosts/artiplayer.com/httpdocs/bonfire/ci3/core/Lang.php
Loader.php
/var/www/vhosts/artiplayer.com/httpdocs/bonfire/ci3/core/Loader.php
Log.php
/var/www/vhosts/artiplayer.com/httpdocs/bonfire/ci3/core/Log.php
Model.php
/var/www/vhosts/artiplayer.com/httpdocs/bonfire/ci3/core/Model.php
Output.php
/var/www/vhosts/artiplayer.com/httpdocs/bonfire/ci3/core/Output.php
Router.php
/var/www/vhosts/artiplayer.com/httpdocs/bonfire/ci3/core/Router.php
Security.php
/var/www/vhosts/artiplayer.com/httpdocs/bonfire/ci3/core/Security.php
URI.php
/var/www/vhosts/artiplayer.com/httpdocs/bonfire/ci3/core/URI.php
Utf8.php
/var/www/vhosts/artiplayer.com/httpdocs/bonfire/ci3/core/Utf8.php
hash.php
/var/www/vhosts/artiplayer.com/httpdocs/bonfire/ci3/core/compat/hash.php
mbstring.php
/var/www/vhosts/artiplayer.com/httpdocs/bonfire/ci3/core/compat/mbstring.php
password.php
/var/www/vhosts/artiplayer.com/httpdocs/bonfire/ci3/core/compat/password.php
standard.php
/var/www/vhosts/artiplayer.com/httpdocs/bonfire/ci3/core/compat/standard.php
DB.php
/var/www/vhosts/artiplayer.com/httpdocs/bonfire/ci3/database/DB.php
DB_driver.php
/var/www/vhosts/artiplayer.com/httpdocs/bonfire/ci3/database/DB_driver.php
DB_query_builder.php
/var/www/vhosts/artiplayer.com/httpdocs/bonfire/ci3/database/DB_query_builder.php
DB_result.php
/var/www/vhosts/artiplayer.com/httpdocs/bonfire/ci3/database/DB_result.php
mysqli_driver.php
/var/www/vhosts/artiplayer.com/httpdocs/bonfire/ci3/database/drivers/mysqli/mysqli_driver.php
mysqli_result.php
/var/www/vhosts/artiplayer.com/httpdocs/bonfire/ci3/database/drivers/mysqli/mysqli_result.php
directory_helper.php
/var/www/vhosts/artiplayer.com/httpdocs/bonfire/ci3/helpers/directory_helper.php
form_helper.php
/var/www/vhosts/artiplayer.com/httpdocs/bonfire/ci3/helpers/form_helper.php
language_helper.php
/var/www/vhosts/artiplayer.com/httpdocs/bonfire/ci3/helpers/language_helper.php
url_helper.php
/var/www/vhosts/artiplayer.com/httpdocs/bonfire/ci3/helpers/url_helper.php
profiler_lang.php
/var/www/vhosts/artiplayer.com/httpdocs/bonfire/ci3/language/english/profiler_lang.php
Cache.php
/var/www/vhosts/artiplayer.com/httpdocs/bonfire/ci3/libraries/Cache/Cache.php
Cache_dummy.php
/var/www/vhosts/artiplayer.com/httpdocs/bonfire/ci3/libraries/Cache/drivers/Cache_dummy.php
Driver.php
/var/www/vhosts/artiplayer.com/httpdocs/bonfire/ci3/libraries/Driver.php
Session.php
/var/www/vhosts/artiplayer.com/httpdocs/bonfire/ci3/libraries/Session/Session.php
Session_driver.php
/var/www/vhosts/artiplayer.com/httpdocs/bonfire/ci3/libraries/Session/Session_driver.php
Session_database_driver.php
/var/www/vhosts/artiplayer.com/httpdocs/bonfire/ci3/libraries/Session/drivers/Session_database_driver.php
BF_Lang.php
/var/www/vhosts/artiplayer.com/httpdocs/bonfire/core/BF_Lang.php
BF_Loader.php
/var/www/vhosts/artiplayer.com/httpdocs/bonfire/core/BF_Loader.php
BF_Model.php
/var/www/vhosts/artiplayer.com/httpdocs/bonfire/core/BF_Model.php
BF_Router.php
/var/www/vhosts/artiplayer.com/httpdocs/bonfire/core/BF_Router.php
BF_Security.php
/var/www/vhosts/artiplayer.com/httpdocs/bonfire/core/BF_Security.php
BF_directory_helper.php
/var/www/vhosts/artiplayer.com/httpdocs/bonfire/helpers/BF_directory_helper.php
BF_form_helper.php
/var/www/vhosts/artiplayer.com/httpdocs/bonfire/helpers/BF_form_helper.php
application_helper.php
/var/www/vhosts/artiplayer.com/httpdocs/bonfire/helpers/application_helper.php
config_file_helper.php
/var/www/vhosts/artiplayer.com/httpdocs/bonfire/helpers/config_file_helper.php
markdown_extended_helper.php
/var/www/vhosts/artiplayer.com/httpdocs/bonfire/helpers/markdown_extended_helper.php
markdown_helper.php
/var/www/vhosts/artiplayer.com/httpdocs/bonfire/helpers/markdown_helper.php
Assets.php
/var/www/vhosts/artiplayer.com/httpdocs/bonfire/libraries/Assets.php
CommonMark.php
/var/www/vhosts/artiplayer.com/httpdocs/bonfire/libraries/CommonMark.php
CommonMarkDriver.php
/var/www/vhosts/artiplayer.com/httpdocs/bonfire/libraries/CommonMark/CommonMarkDriver.php
CommonMark_MarkdownExtended.php
/var/www/vhosts/artiplayer.com/httpdocs/bonfire/libraries/CommonMark/drivers/CommonMark_MarkdownExtended.php
Console.php
/var/www/vhosts/artiplayer.com/httpdocs/bonfire/libraries/Console.php
Events.php
/var/www/vhosts/artiplayer.com/httpdocs/bonfire/libraries/Events.php
Modules.php
/var/www/vhosts/artiplayer.com/httpdocs/bonfire/libraries/Modules.php
Route.php
/var/www/vhosts/artiplayer.com/httpdocs/bonfire/libraries/Route.php
Template.php
/var/www/vhosts/artiplayer.com/httpdocs/bonfire/libraries/Template.php
docs.php
/var/www/vhosts/artiplayer.com/httpdocs/bonfire/modules/docs/config/docs.php
routes.php
/var/www/vhosts/artiplayer.com/httpdocs/bonfire/modules/docs/config/routes.php
Docs.php
/var/www/vhosts/artiplayer.com/httpdocs/bonfire/modules/docs/controllers/Docs.php
docs_lang.php
/var/www/vhosts/artiplayer.com/httpdocs/bonfire/modules/docs/language/english/docs_lang.php
_sidebar.php
/var/www/vhosts/artiplayer.com/httpdocs/bonfire/modules/docs/views/_sidebar.php
index.php
/var/www/vhosts/artiplayer.com/httpdocs/bonfire/modules/docs/views/index.php
Settings_lib.php
/var/www/vhosts/artiplayer.com/httpdocs/bonfire/modules/settings/libraries/Settings_lib.php
Settings_model.php
/var/www/vhosts/artiplayer.com/httpdocs/bonfire/modules/settings/models/Settings_model.php
index.php
index.php
index.php
themes/docs/index.php