You are here

function deploy_endpoint_load_all in Deploy - Content Staging 7.2

Same name and namespace in other branches
  1. 7.3 deploy.module \deploy_endpoint_load_all()

Loader callback for a deployment endpoint.

3 calls to deploy_endpoint_load_all()
deploy_endpoint_load in ./deploy.module
Loader callback for a deployment endpoint.
deploy_ui_plan::edit_form in modules/deploy_ui/plugins/export_ui/deploy_ui_plan.class.php
Form callback for basic config.
drush_deploy_create_plan in ./deploy.drush.inc
Command callback for creating plans.
1 string reference to 'deploy_endpoint_load_all'
deploy_schema in ./deploy.install
Implements hook_schema().

File

./deploy.module, line 256
Deploy module functions.

Code

function deploy_endpoint_load_all() {
  ctools_include('export');
  $endpoints = ctools_export_load_object('deploy_endpoints', 'all');
  if (isset($endpoints)) {
    return $endpoints;
  }
}