apps-update-page.tpl.php in Apps 7
1 theme call to apps-update-page.tpl.php
- apps_update_page in ./
apps.pages.inc - Callback for listing of installed apps that have available updates
File
theme/apps-update-page.tpl.phpView source
<?php
if (!empty($content['apps'])) {
?>
<div id="apps-list">
<?php
print drupal_render($content['apps']);
?>
</div>
<?php
}
else {
?>
<?php
print t('No apps with available updates.');
}