course.theme.inc in Course 3.x
Same filename and directory in other branches
File
includes/course.theme.incView source
<?php
/**
* Theme the course outline.
*/
function theme_course_outline($variables) {
$output = '';
$output .= '<div class="course-outline">';
$output .= '<span class="trigger"></span>';
$output .= '<h4 class="course-title">' . filter_xss($variables['node']->title) . '</h4>';
$output .= theme('item_list', array(
'title' => '',
'items' => $variables['items'],
));
$output .= '</div>';
return $output;
}
Functions
Name | Description |
---|---|
theme_course_outline | Theme the course outline. |