bee_hotel-1.x-dev/modules/beehotel_sps/beehotel_sps.module
modules/beehotel_sps/beehotel_sps.module
<?php
/**
* @file
* BeeHotel SPS - ??? Price slider.
*/
use Drupal\Core\Form\FormStateInterface;
/**
* Implements hook_form_alter().
*/
function beehotel_sps_form_alter(&$form, FormStateInterface $form_state, $form_id) {
$path = \Drupal::service('path.current')->getPath();
if (\Drupal::service('path.matcher')->matchPath($path, '/store/*/edit')) {
$form['#attached']['library'][] = 'beehotel_sps/beehotel-sps-slicer';
}
return $form;
}
