Nette\Routing\Route::presenter2path PHP Méthode

presenter2path() private static méthode

PascalCase:Presenter name -> dash-and-dot-separated.
private static presenter2path ( $s ) : string
Résultat string
    private static function presenter2path($s)
    {
        $s = strtr($s, ':', '.');
        $s = preg_replace('#([^.])(?=[A-Z])#', '$1-', $s);
        $s = strtolower($s);
        $s = rawurlencode($s);
        return $s;
    }