profile-module-manager-bundle-group.tpl.php in Profile Module Manager 7
Same filename and directory in other branches
1 theme call to profile-module-manager-bundle-group.tpl.php
- profile_module_manager_bundle_list in ./
profile_module_manager.admin.inc - Callback for admin/settings/bundles/list
File
templates/profile-module-manager-bundle-group.tpl.phpView source
<?php
/* Variables:
* $group : group_bundle or group_admin_bundle
* $label : bundle label
* $bundles : bundles in group
*/
// Set Bundle label
$label = $group == 'group_admin_bundle' ? 'Admin Bundles' : 'Bundles';
?>
<div class="admin-panel">
<h2><?php
print $label;
?></h2>
<div class="body">
<ul class="admin-list">
<?php
foreach ($bundles as $bundle) {
print '<li class="leaf">' . render($bundle) . '</li>';
}
?>
</ul>
</div>
</div>