You are here

function apps_app_load in Apps 7

Path object loader for an App.

3 calls to apps_app_load()
apps_app_access in ./apps.module
Access callback for the operations that can be performed on an app.
apps_preprocess_apps_app_page in theme/apps.theme.inc
Implements hook_preprocess_apps_app_page().
drush_apps_install in ./apps.drush.inc
Install an app, or list.

File

./apps.module, line 556
Module file for Apps

Code

function apps_app_load($server_name, $app_name) {
  apps_include('manifest');
  $app = apps_apps($server_name, array(
    'machine_name' => $app_name,
  ));
  return $app[$app_name];
}