You are here

function _get_breakpoint_css_filepath in Responsive and off-canvas menu 8.3

Same name and namespace in other branches
  1. 8.2 responsive_menu.module \_get_breakpoint_css_filepath()
  2. 4.4.x responsive_menu.module \_get_breakpoint_css_filepath()
  3. 4.0.x responsive_menu.module \_get_breakpoint_css_filepath()
  4. 4.1.x responsive_menu.module \_get_breakpoint_css_filepath()
  5. 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 484
Contains procedural code.

Code

function _get_breakpoint_css_filepath() {
  return \Drupal::config('responsive_menu.settings')
    ->get('breakpoint_css_filepath');
}