You are here

function _commerce_pdm_product_display_manager_form_attach in Commerce (Product Display Manager) 7

Add necessary css and JavaScript files to the display manager form.

1 string reference to '_commerce_pdm_product_display_manager_form_attach'
commerce_pdm_product_display_manager_form in ./commerce_pdm.admin.inc
Creates the display manager form.

File

./commerce_pdm.admin.inc, line 745

Code

function _commerce_pdm_product_display_manager_form_attach($form_element) {
  drupal_add_css(drupal_get_path('module', 'commerce_pdm') . '/commerce_pdm_product_display_manager_form.css');
  drupal_add_js(drupal_get_path('module', 'commerce_pdm') . '/commerce_pdm_product_display_manager_form.js');
  return $form_element;
}