Method | Description | |
---|---|---|
apiController ( |
Runs the api requests | |
backendAjaxController ( ) : Symfony\Component\HttpFoundation\Response | Runs the backend ajax requests | |
backendController ( ) : Symfony\Component\HttpFoundation\Response | Runs the backend | |
backendCronjobController ( ) : Symfony\Component\HttpFoundation\Response | Runs the cronjobs | |
frontendAjaxController ( ) : Symfony\Component\HttpFoundation\Response | Runs the frontend ajax requests | |
frontendController ( ) : Symfony\Component\HttpFoundation\Response | Runs the frontend requests | |
getRoutes ( ) : array | Get the possible routes |
Method | Description | |
---|---|---|
handleApplication ( ApplicationInterface $application ) : Symfony\Component\HttpFoundation\Response | Runs an application and returns the Response | |
initializeAPI ( string $app, |
||
initializeBackend ( string $app ) : string | ||
initializeFrontend ( string $app ) : string |
public apiController ( |
||
$request | ||
return | Symfony\Component\HttpFoundation\Response |
public backendAjaxController ( ) : Symfony\Component\HttpFoundation\Response | ||
return | Symfony\Component\HttpFoundation\Response |
public backendController ( ) : Symfony\Component\HttpFoundation\Response | ||
return | Symfony\Component\HttpFoundation\Response |
public backendCronjobController ( ) : Symfony\Component\HttpFoundation\Response | ||
return | Symfony\Component\HttpFoundation\Response |
public frontendAjaxController ( ) : Symfony\Component\HttpFoundation\Response | ||
return | Symfony\Component\HttpFoundation\Response |
public frontendController ( ) : Symfony\Component\HttpFoundation\Response | ||
return | Symfony\Component\HttpFoundation\Response |
protected handleApplication ( ApplicationInterface $application ) : Symfony\Component\HttpFoundation\Response | ||
$application | ApplicationInterface | |
return | Symfony\Component\HttpFoundation\Response |
protected initializeAPI ( string $app, |
||
$app | string | The name of the application to load (ex. BackendAjax) |
$request | ||
return | string | The name of the application class we need to instantiate. |
protected initializeBackend ( string $app ) : string | ||
$app | string | The name of the application to load (ex. BackendAjax) |
return | string | The name of the application class we need to instantiate. |
protected initializeFrontend ( string $app ) : string | ||
$app | string | The name of the application to load (ex. frontend_ajax) |
return | string | The name of the application class we need to instantiate. |