ui-bar-title-area.php 869 B

1234567891011121314151617181920
  1. <?php do_action( 'fl_builder_before_ui_bar_title' ) ?>
  2. <span class="<?php echo implode( ' ', $wrapper_classes )?>">
  3. <?php if ( '' != $icon_url ) { ?>
  4. <div class="fl-builder-bar-title-icon">
  5. <img src="<?php echo $icon_url ?>" />
  6. </div>
  7. <?php } ?>
  8. <div class="fl-builder-bar-title-area">
  9. <div class="fl-builder-layout-pretitle"><?php echo $pretitle ?></div>
  10. <div class="fl-builder-layout-title" title="<?php echo $title ?>"><?php echo $title ?></div>
  11. </div>
  12. <?php if ( ! $simple_ui ) { ?>
  13. <button class="fl-builder-button fl-builder-button-silent fl-builder-bar-title-caret" title="<?php _e( 'Toggle Main Menu', 'fl-builder' ) ?>">
  14. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" height="30px" width="30px">
  15. <path d="M5 6l5 5 5-5 2 1-7 7-7-7z"/>
  16. </svg>
  17. </button>
  18. <?php } ?>
  19. </span>
  20. <?php do_action( 'fl_builder_after_ui_bar_title' ) ?>