apps-install-page.tpl.php in Apps 7
1 theme call to apps-install-page.tpl.php
- apps_install_page in ./
apps.pages.inc - Callback list off all apps
File
theme/apps-install-page.tpl.phpView source
<?php
if (isset($content['featured_app'])) {
?>
<?php
print drupal_render($content['featured_app']);
}
if (isset($content['apps'])) {
?>
<div id="apps-list" class="clearfix">
<?php
print drupal_render($content['apps']);
?>
</div>
<?php
}
else {
?>
<div class="messages"><?php
print t('No applications currently available.');
?></div>
<?php
}