0

Is there some architectural guide, that shows in details the various subsystems that are involved in the creation of a single page?

I've tried to find something but even the presentations at DrupalCons don't go into detail.

Kay Pale
  • 6,449
  • 7
  • 28
  • 28

2 Answers2

0

http://www.freshblurbs.com/drupal-bootstrap-request-processing-drupal

Details the bootstrap process.

Andrew Sledge
  • 10,163
  • 2
  • 29
  • 30
  • This is very close to what I need, but it's for Drupal 5 and doesn't explain much. I mean, I can get the same info from my debugger :) – Kay Pale Dec 10 '10 at 18:02
0

Page generation in Drupal involves PHPTemplate. You can have more information through here. You can look at the function calls of each partial theme from the Drupal API.

Ege Özcan
  • 13,971
  • 2
  • 30
  • 51