function apps_preprocess_apps_install_page in Apps 7
Implements hook_preprocess_apps_install_page().
File
- theme/
apps.theme.inc, line 235 - Provides theme functions for apps module.
Code
function apps_preprocess_apps_install_page(&$vars) {
drupal_add_css(drupal_get_path('module', 'apps') . '/theme/css/apps.css');
if (isset($vars['content']['featured_app'])) {
$vars['content']['featured_app']['#theme'] = 'apps_app_featured';
}
}