profile-module-manager-bundle.tpl.php in Profile Module Manager 7
Same filename and directory in other branches
1 theme call to profile-module-manager-bundle.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.tpl.phpView source
<?php
/**
* Variables:
*
* $bundles
* $bundle['title'] : Title of bundle
* $bundle['description'] : Description of bundle
* $bundle['actions'] : Actions of bundle (such as enable, etc)
* $bundle['classes'] : CSS classes for bundle
*
*/
?>
<div class="<?php
print $bundle['classes'];
?>">
<div class="module-bundle">
<span class="label"><?php
print $bundle['title'];
?></span>
<div class="module-bundle-description">
<?php
print $bundle['description'];
?>
</div>
<div class="bundle-actions">
<?php
print $bundle['actions'];
?>
</div>
</div>
</div>