PHP code example of dravencms / application

1. Go to this page and download the library: Download dravencms/application library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

dravencms / application example snippets


use Dravencms\Application\IRouterFactory;
use Nette\Application\Routers\RouteList;

final class RouteFactory implements IRouterFactory
{
    public function createRouter(): RouteList
    {
        $routes = new RouteList('Front');
        $routes->addRoute('example', 'Example:default');
        return $routes;
    }
}