summaryrefslogtreecommitdiff
path: root/includes
diff options
context:
space:
mode:
Diffstat (limited to 'includes')
-rw-r--r--includes/bootstrap.inc9
-rw-r--r--includes/theme.inc68
2 files changed, 23 insertions, 54 deletions
diff --git a/includes/bootstrap.inc b/includes/bootstrap.inc
index ed274055d..2cfbdacb7 100644
--- a/includes/bootstrap.inc
+++ b/includes/bootstrap.inc
@@ -144,13 +144,8 @@ function drupal_page_header() {
** call all init() and exit() hooks without including all modules
** only use those hooks for critical operations
*/
- foreach (module_list(0, 1) as $module) {
- if (is_array($module) && $module['bootstrap']) {
- include_once $module['filename'];
- foreach (bootstrap_hooks() as $hook) {
- module_invoke($module['name'], $hook);
- }
- }
+ foreach (bootstrap_hooks() as $hook) {
+ module_invoke_all($hook);
}
exit();
}
diff --git a/includes/theme.inc b/includes/theme.inc
index 0bd2416bf..25c504883 100644
--- a/includes/theme.inc
+++ b/includes/theme.inc
@@ -117,22 +117,26 @@ function path_to_theme() {
return dirname($themes[$theme]->filename);
}
+
/**
- * @defgroup themeable Themeable functions
- * @{
+ * Returns an entire Drupal page displaying the supplied content.
*
- * Themeable functions - functions that can be styled differently in themes.
+ * @param $content a string containing the content to display
+ * @param $title (optional) page title (\<head>\<title>)
+ * @param $breadcrumb (optional) page breadcrumb
*
- * @see theme
- * @see theme.inc
- */
-
-/**
- * Returns the theme header.
+ * @see drupal_breadcrumb
*
- * @return a string containing the @a header output.
+ * @return a string containing the @a page output.
*/
-function theme_header() {
+function theme_page($content, $title = NULL, $breadcrumb = NULL) {
+ if (isset($title)) {
+ drupal_set_title($title);
+ }
+ if (isset($breadcrumb)) {
+ drupal_set_breadcrumb($breadcrumb);
+ }
+
$output = "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n";
$output .= "<html xmlns=\"http://www.w3.org/1999/xhtml\">";
$output .= "<head>";
@@ -156,31 +160,13 @@ function theme_header() {
$output .= "<small>$help</small><hr />";
}
- return $output;
-}
-
-/**
- * Returns an entire Drupal page displaying the supplied content.
- *
- * @param $content a string containing the content to display
- * @param $title (optional) page title (\<head>\<title>)
- * @param $breadcrumb (optional) page breadcrumb
- *
- * @see drupal_breadcrumb
- *
- * @return a string containing the @a page output.
- */
-function theme_page($content, $title = NULL, $breadcrumb = NULL) {
- if (isset($title)) {
- drupal_set_title($title);
- }
- if (isset($breadcrumb)) {
- drupal_set_breadcrumb($breadcrumb);
- }
-
- $output = theme("header");
+ $output .= "\n<!-- begin content -->\n";
$output .= $content;
- $output .= theme("footer");
+ $output .= "\n<!-- end content -->\n";
+
+ $output .= "</td></tr></table>";
+ $output .= theme_closure();
+ $output .= "</body></html>";
return $output;
}
@@ -395,18 +381,6 @@ function theme_block($block) {
}
/**
- * Returns themed page footer.
- *
- * @return a string containing the @a footer output.
- */
-function theme_footer() {
- $output = "</td></tr></table>";
- $output .= theme_closure();
- $output .= "</body></html>";
- return $output;
-}
-
-/**
* Returns themed marker, useful for marking new comments or required form
* elements.
*