CONTROLLER and ROUTER

mod_harbour is an Apache module that allows to run PRGs directly on the web !!!
Post Reply
User avatar
Otto
Posts: 4470
Joined: Fri Oct 07, 2005 7:07 pm
Contact:

CONTROLLER and ROUTER

Post by Otto »

Hello,

Now the router is working very efficiently:

There are 2 hash tables.

Code: Select all

 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
********************************************************************
mod harbour - Vamos a la conquista de la Web
modharbour.org

********************************************************************
Post Reply