You are here

function oa_files_theme in Open Atrium Files 7.2

Implements hook_theme().

File

./oa_files.module, line 75

Code

function oa_files_theme() {
  $path = drupal_get_path('module', 'oa_files') . '/templates';
  return array(
    'oa_files' => array(
      'template' => 'oa-files',
      'variables' => array(),
      'path' => $path,
    ),
    'oa_files_dialog_page' => array(
      'render element' => 'page',
      'template' => 'templates/oa-files-dialog-page',
    ),
  );
}