list.tpl.php in Opigno TinCan API 7
Same filename in this branch
- 7 modules/opigno_tincan_api_stats/templates/partials/statements/list.tpl.php
- 7 modules/opigno_tincan_api_stats/templates/quizzes/partials/list.tpl.php
- 7 modules/opigno_tincan_api_stats/templates/dashboard/widgets/most_active_users/partials/list.tpl.php
- 7 modules/opigno_tincan_api_stats/templates/dashboard/widgets/top_10_viewed_pages/partials/list.tpl.php
- 7 modules/opigno_tincan_api_stats/templates/course_content/widgets/course_contexts_statistics/partials/list.tpl.php
Opigno Learning Record Store stats - Dashboard - Top 10 viewed page list template file
File
modules/opigno_tincan_api_stats/templates/dashboard/widgets/top_10_viewed_pages/partials/list.tpl.phpView source
<?php
/**
* @file
* Opigno Learning Record Store stats - Dashboard - Top 10 viewed page list template file
*
* @param array $top_10_viewed_pages
*/
?>
<table>
<tr>
<th class="center"><?php
print t('#');
?></th>
<th><?php
print t('Page');
?></th>
<th class="center"><?php
print t('Number of visits');
?></th>
<th class="center"><?php
print t('Number of users');
?></th>
</tr>
<?php
foreach ($top_10_viewed_pages as $index => $page) {
print theme('opigno_lrs_stats_dashboard_widget_top_10_viewed_pages_list_item', compact('index', 'page'));
}
?>
</table>