CONTROLLER and ROUTER

Responder
Otto
Mensajes: 50
Registered for: 4 years 8 months
Austria

CONTROLLER and ROUTER

Mensaje por Otto »

Hello,

Now the router is working very efficiently:

There are 2 hash tables.

Código: Seleccionar todo

 hRouting[  "datakunden:exec:edit" ] = "edit"
 hRouting[  "datakunden:exec:brief" ] = "briefe"
... 
 hRouting[  "landingpage:exec:edit" ] = "editbutton"
...
 hWebPageName[ "landingpage:exec:edit" ] = "Setup Schalter Landing Page"
 hWebPageName[ "datakunden:exec:brief" ] = "QRCode Notes"
 hWebPageName[ "qrcode" ] = "QRCode Verwaltung"
 hWebPageName[ "landing" ] = "Langing Page Generator"

 
One for the ROUTE (hRouting) and one for the WebPageName (hWebPageName).
First the CONTROLLER checks whether the user is authorized and then forwards the request to the ROUTER.

In practice, only these two queries are required in the ROUTER:

cRoute: = hb_HGetDef (hRouting, hashkey, 'home')
cWebPageName: = hb_HGetDef (hWebPageName, hashkey, 'home')

return View( cRoute ) from ROUTER
then does the work.

I'm using the GENESIS example from mod harbour.

Best regards,
Otto
Responder