29 lines
		
	
	
		
			728 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			728 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
$framework_routes = [
 | 
						|
    '/novaconium' => [ 
 | 
						|
        'get' => 'NOVACONIUM/init'
 | 
						|
    ],
 | 
						|
    '/novaconium/create_admin' => [ 
 | 
						|
        'post' => 'NOVACONIUM/create_admin'
 | 
						|
    ],
 | 
						|
    '/novaconium/login' => [
 | 
						|
        'post' => 'NOVACONIUM/authenticate',
 | 
						|
        'get' => 'NOVACONIUM/login'
 | 
						|
    ],
 | 
						|
    '/novaconium/dashboard' => [
 | 
						|
        'get' => 'NOVACONIUM/dashboard'
 | 
						|
    ],
 | 
						|
    '/novaconium/pages' => [
 | 
						|
        'get' => 'NOVACONIUM/pages'
 | 
						|
    ],
 | 
						|
    '/novaconium/page/edit/{id}' => [
 | 
						|
        'get' => 'NOVACONIUM/editpage'
 | 
						|
    ],
 | 
						|
    '/novaconium/savePage' => [
 | 
						|
        'post' => 'NOVACONIUM/savepage'
 | 
						|
    ],
 | 
						|
    '/novaconium/logout' => [
 | 
						|
        'post' => 'NOVACONIUM/logout',
 | 
						|
        'get' => 'NOVACONIUM/logout'
 | 
						|
    ]
 | 
						|
]; |