You are here

deploy_ui_endpoint.inc in Deploy - Content Staging 7.3

Same filename and directory in other branches
  1. 7.2 modules/deploy_ui/plugins/export_ui/deploy_ui_endpoint.inc

File

modules/deploy_ui/plugins/export_ui/deploy_ui_endpoint.inc
View source
<?php

/**
 * @file
 * Deploy UI endpoint plugin definition.
 */
$plugin = array(
  'schema' => 'deploy_endpoints',
  'access' => 'administer deployment endpoints',
  'menu' => array(
    'menu prefix' => 'admin/structure/deploy',
    'menu item' => 'endpoints',
    'menu title' => 'Endpoints',
  ),
  'title singular' => t('endpoint'),
  'title singular proper' => t('Endpoint'),
  'title plural' => t('endpoints'),
  'title plural proper' => t('Endpoints'),
  'use wizard' => TRUE,
  'handler' => array(
    'class' => 'deploy_ui_endpoint',
    'parent' => 'ctools_export_ui',
  ),
  'form info' => array(
    'order' => array(
      'basic' => t('Basics'),
      'authenticator' => t('Authenticator'),
      'service' => t('Service'),
    ),
  ),
);