summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAngie Byron <webchick@24967.no-reply.drupal.org>2010-02-23 19:03:37 +0000
committerAngie Byron <webchick@24967.no-reply.drupal.org>2010-02-23 19:03:37 +0000
commitf62fdd92eccea09afb0e37a0820446adf607ab79 (patch)
treed7ae958c5c24e1d97b69581d99d9c2ea6d198804
parentbd4809c9c5920b90d2b57c590c16ccb093f2201a (diff)
downloadbrdo-f62fdd92eccea09afb0e37a0820446adf607ab79.tar.gz
brdo-f62fdd92eccea09afb0e37a0820446adf607ab79.tar.bz2
#664806 by jhodgdon: Fixed phptemplate_theme() doc headers standardization.
-rw-r--r--themes/engines/phptemplate/phptemplate.engine10
1 files changed, 5 insertions, 5 deletions
diff --git a/themes/engines/phptemplate/phptemplate.engine b/themes/engines/phptemplate/phptemplate.engine
index d57b044b7..78b54d513 100644
--- a/themes/engines/phptemplate/phptemplate.engine
+++ b/themes/engines/phptemplate/phptemplate.engine
@@ -3,9 +3,12 @@
/**
* @file
- * Handles integration of templates written in pure php with the Drupal theme system.
+ * Handles integration of PHP templates with the Drupal theme system.
*/
+/**
+ * Implements hook_init().
+ */
function phptemplate_init($template) {
$file = dirname($template->filename) . '/template.php';
if (file_exists($file)) {
@@ -14,10 +17,7 @@ function phptemplate_init($template) {
}
/**
- * Implements hook_theme to tell Drupal what templates the engine
- * and the current theme use. The $existing argument will contain hooks
- * pre-defined by Drupal so that we can use that information if
- * we need to.
+ * Implements hook_theme().
*/
function phptemplate_theme($existing, $type, $theme, $path) {
$templates = drupal_find_theme_functions($existing, array($theme));