list_item.tpl.php in Opigno Statistics App 7
Same filename in this branch
- 7 templates/user/widgets/courses_results/partials/list_item.tpl.php
- 7 templates/user/widgets/badges_earned/partials/list_item.tpl.php
- 7 templates/dashboard/widgets/most_active_users/partials/list_item.tpl.php
- 7 templates/dashboard/widgets/top_10_classes/partials/list_item.tpl.php
- 7 templates/dashboard/widgets/top_10_courses/partials/list_item.tpl.php
- 7 templates/group/course/widgets/course_lessons/partials/list_item.tpl.php
- 7 templates/group/course/widgets/students_results/partials/list_item.tpl.php
- 7 templates/group/class/widgets/students_results/partials/list_item.tpl.php
Opigno statistics app - Dashboard - Top 10 courses list item template file
File
templates/dashboard/widgets/top_10_courses/partials/list_item.tpl.phpView source
<?php
/**
* @file
* Opigno statistics app - Dashboard - Top 10 courses list item template file
*
* @param int $index
* @param array $course
* $course['nid']
* $course['title']
* $course['number_of_visits']
* $course['number_of_users']
* $course['number_passed']
*/
?>
<tr>
<td class="center"><?php
print $index + 1;
?></td>
<td><?php
print $course['group_title'];
?></td>
<td class="center"><?php
print $course['page_views'];
?></td>
<td class="center"><?php
print $course['nb_members'];
?></td>
<td class="center"><?php
print $course['number_passed'];
?></td>
<td class="center"><?php
print l(t('View statistics'), $course['stats_link']);
?></td>
</tr>