You are here

function cmis_browser_preprocess_cmis_browser_popup in CMIS API 7

Same name and namespace in other branches
  1. 7.2 cmis_browser/cmis_browser.theme.inc \cmis_browser_preprocess_cmis_browser_popup()

File

cmis_browser/cmis_browser.theme.inc, line 233

Code

function cmis_browser_preprocess_cmis_browser_popup(&$vars) {
  $vars['breadcrumb'] = theme('cmis_browser_browse_breadcrumb', array(
    'bcarray' => $vars['bcarray'],
  ));
  $vars['children'] = theme('cmis_browser_browse_children', array(
    'context' => $vars['children'],
  ));
  drupal_add_js(drupal_get_path('module', 'cmis_field') . '/js/cmis_field.js');
  $vars['scripts'] = drupal_get_js();
  $vars['styles'] = drupal_get_css();
}