PHP Classes

File: routes.php

Recommend this page to a friend!
  Classes of Minh Tien   Noblesse CMS   routes.php   Download  
File: routes.php
Role: Example script
Content type: text/plain
Description: Bootstrap
Class: Noblesse CMS
Content management system with custom plugins
Author: By
Last change:
Date: 8 years ago
Size: 282 bytes
 

Contents

Class file image Download
<?php

// Load 'before_system_start' plugins
System::before_system_start();

// Load sytem settings

Route::get('api', 'controlApi');

Route::get('admincp', 'controlAdmincp');

Route::get('usercp', 'controlUsercp');

Route::get('', 'controlFrontEnd');

System::after_system_start();