You are here

function deploy_endpoint_load_all in Deploy - Content Staging 7.3

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

Loader callback for a deployment endpoint.

5 calls to deploy_endpoint_load_all()
deploy_endpoint_load in ./deploy.module
Loader callback for a deployment endpoint.
deploy_remote_cc_endpoint_settings in modules/deploy_remote_cc/includes/deploy_remote_cc.admin.inc
Admin settings form.
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.
_deploy_encrypt_endpoints in ./deploy.module
Helper function to encrypt existing endpoints username & password.
1 string reference to 'deploy_endpoint_load_all'
deploy_schema in ./deploy.install
Implements hook_schema().

File

./deploy.module, line 419
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;
  }
}