function _get_breakpoint_css_filepath in Responsive and off-canvas menu 4.0.x
Same name and namespace in other branches
- 8.3 responsive_menu.module \_get_breakpoint_css_filepath()
- 8.2 responsive_menu.module \_get_breakpoint_css_filepath()
- 4.4.x responsive_menu.module \_get_breakpoint_css_filepath()
- 4.1.x responsive_menu.module \_get_breakpoint_css_filepath()
- 4.3.x responsive_menu.module \_get_breakpoint_css_filepath()
Helper function to return the path to the generated css.
Return value
string The path to the generated breakpoint css.
4 calls to _get_breakpoint_css_filepath()
- responsive_menu_cache_flush in ./
responsive_menu.module - Implements hook_cache_flush().
- responsive_menu_generate_breakpoint_css in ./
responsive_menu.module - Generates the breakpoint css in the public directory.
- responsive_menu_page_bottom in ./
responsive_menu.module - Implements hook_page_bottom().
- SettingsForm::submitForm in src/
Form/ SettingsForm.php - Form submission handler.
File
- ./
responsive_menu.module, line 424 - Contains procedural code.
Code
function _get_breakpoint_css_filepath() {
return \Drupal::config('responsive_menu.settings')
->get('breakpoint_css_filepath');
}