function apps_include in Apps 7
Easier wrapper around module_load_include.
Parameters
string $group: The name of a include file in the from apps.$group.inc
23 calls to apps_include()
- apps_app_access in ./
apps.module - Access callback for the operations that can be performed on an app.
- apps_app_config_page in ./
apps.pages.inc - Callback for app config page
- apps_app_install in ./
apps.pages.inc - Callback for app install TODO: check to see the app is install able and then install TODO: should goto config page but pass on the current destination NOTE: it is expected that this page would be called with a drupal desination set
- apps_app_load in ./
apps.module - Path object loader for an App.
- apps_app_module_name_load in ./
apps.module - Path object loader for an App via machine name only.
File
- ./
apps.module, line 609 - Module file for Apps
Code
function apps_include($group) {
module_load_include("inc", "apps", "apps.{$group}");
}