You are here

function apps_demo_content_enabled in Apps 7

Checks if the apps demo content module is enabled

Parameters

$app array: an app array:

Return value

bool if the module was enabled

1 call to apps_demo_content_enabled()
apps_demo_content_disable in ./apps.manifest.inc
Disables the app's demo content module
1 string reference to 'apps_demo_content_enabled'
apps_add_app_info in ./apps.manifest.inc
@TODO: Add function description

File

./apps.manifest.inc, line 614
Handles pulling and processing of app data from the server

Code

function apps_demo_content_enabled($app) {
  return module_exists($app['demo content module']);
}