From f62fdd92eccea09afb0e37a0820446adf607ab79 Mon Sep 17 00:00:00 2001 From: Angie Byron Date: Tue, 23 Feb 2010 19:03:37 +0000 Subject: #664806 by jhodgdon: Fixed phptemplate_theme() doc headers standardization. --- themes/engines/phptemplate/phptemplate.engine | 10 +++++----- 1 file 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)); -- cgit v1.2.3