You are here

video_embed_field_export_ui.inc in Video Embed Field 7.2

Defines the CTools Export UI plugin.

File

plugins/export_ui/video_embed_field_export_ui.inc
View source
<?php

/**
 * @file
 * Defines the CTools Export UI plugin.
 */

/**
 * Defines this Export UI plugin.
 */
$plugin = array(
  'schema' => 'vef_video_styles',
  'access' => 'administer video styles',
  // Define the menu item.
  'menu' => array(
    'menu prefix' => 'admin/config/media/vef',
    'menu item' => 'vef_video_styles',
    'menu title' => 'Video Embed Styles',
    'menu description' => 'Administer Video Embed Field\'s video styles.',
  ),
  // Define user interface texts.
  'title singular' => t('video style'),
  'title plural' => t('video styles'),
  'title singular proper' => t('Video Styles'),
  'title plural proper' => t('Video Styles'),
  // Define the names of the functions that provide the add/edit forms.
  'form' => array(
    'settings' => 'video_embed_field_video_style_form',
  ),
  'export' => array(
    'admin_title' => 'title',
  ),
);