You are here

function deploy_views_api in Deploy - Content Staging 6

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

Implementation of hook_views_api().

File

./deploy.module, line 967
Deployment API which enables modules to deploy items between servers.

Code

function deploy_views_api() {
  return array(
    'api' => 2,
    'path' => drupal_get_path('module', 'deploy') . '/includes',
  );
}