Как в Друпале происходит шаблонизация? [РЕШЕНО]

Главные вкладки

Комментарии

Аватар пользователя beepbooptodelete beepbooptodelete 6 января 2012 в 0:54

А вот и ответ:

includes/theme.inc

1075 function theme_render_template($template_file, $variables) {
1076   extract($variables, EXTR_SKIP);  // Extract the variables to a local namespace
1077   ob_start();                      // Start output buffering
1078   include "./$template_file";      // Include the template file
1079   $contents = ob_get_contents();   // Get the contents of the buffer
1080   ob_end_clean();                  // End buffering and discard
1081   return $contents;                // Return the contents
1082 }

Код этот из 6-ого друпала.