35 lines
1.2 KiB
PHP
35 lines
1.2 KiB
PHP
<?php
|
|
/**
|
|
* Copyright (c) 2012 Bart Visscher <bartv@thisnet.nl>
|
|
* This file is licensed under the Affero General Public License version 3 or
|
|
* later.
|
|
* See the COPYING-README file.
|
|
*/
|
|
|
|
// Core settings pages
|
|
$this->create('settings_help', '/settings/help')
|
|
->actionInclude('settings/help.php');
|
|
$this->create('settings_personal', '/settings/personal')
|
|
->actionInclude('settings/personal.php');
|
|
$this->create('settings_settings', '/settings')
|
|
->actionInclude('settings/settings.php');
|
|
$this->create('settings_users', '/settings/users')
|
|
->actionInclude('settings/users.php');
|
|
$this->create('settings_apps', '/settings/apps')
|
|
->actionInclude('settings/apps.php');
|
|
$this->create('settings_admin', '/settings/admin')
|
|
->actionInclude('settings/admin.php');
|
|
|
|
// Not specifically routed
|
|
$this->create('app_css', '/apps/{app}/{file}')
|
|
->requirements(array('file' => '.*.css'))
|
|
->action('OC', 'loadCSSFile');
|
|
$this->create('app_index_script', '/apps/{app}/')
|
|
->defaults(array('file' => 'index.php'))
|
|
//->requirements(array('file' => '.*.php'))
|
|
->action('OC', 'loadAppScriptFile');
|
|
$this->create('app_script', '/apps/{app}/{file}')
|
|
->defaults(array('file' => 'index.php'))
|
|
->requirements(array('file' => '.*.php'))
|
|
->action('OC', 'loadAppScriptFile');
|