You are here

function drd_server_svn_drd_svn_module in Drupal Remote Dashboard Server 7.2

Same name and namespace in other branches
  1. 6.2 drd_server_svn.module \drd_server_svn_drd_svn_module()

Implements hook_drd_svn_module().

Return value

array An array of directories that are available for subversion actions.

File

./drd_server_svn.module, line 87
Provides subversion functionality as an addition to drd_server.

Code

function drd_server_svn_drd_svn_module() {
  return array(
    'drupal' => array(
      'label' => t('Drupal Core'),
      'paths' => array(
        DRUPAL_ROOT,
      ),
    ),
    'drd' => array(
      'label' => t('Module DRD_Server'),
      'paths' => array(
        DRUPAL_ROOT . '/' . drupal_get_path('module', 'drd_server'),
      ),
    ),
  );
}