sudo apt install openjdk-8-jdk-headless
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | /** | |
| * Adjust contact form 7 radios and checkboxes to match bootstrap 4 custom radio structure. | |
| */ | |
| add_filter('wpcf7_form_elements', function ($content) { | |
| $content = preg_replace('/<label><input type="(checkbox|radio)" name="(.*?)" value="(.*?)" \/><span class="wpcf7-list-item-label">/i', '<label class="custom-control custom-\1"><input type="\1" name="\2" value="\3" class="custom-control-input"><span class="wpcf7-list-item-label custom-control-label">', $content); | |
| return $content; | |
| }); | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | $.Redactor.prototype.counter = function () | |
| { | |
| return { | |
| init: function () | |
| { | |
| this.core.editor().on('keyup.redactor-plugin-counter', $.proxy(this.counter.count, this)); | |
| this.countContainer = $('<div class="redactor-styles counter"></div>'); | |
| this.core.editor().after(this.countContainer); | |
| this.counter.count(); | |
| }, | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | IM HEAD | |
| ############ | |
| <script> | |
| var elricco = {}; | |
| elricco.funcs = []; | |
| </script> | |
| MODULAUSGABE | |
| ############ | |
| <?php if (!rex::isBackend()): ?> | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | // Alerts | |
| @include alert-variant($background, $border, $text-color); | |
| // Background Variant | |
| @include bg-variant($parent, $color); | |
| // Border Radius | |
| @include border-top-radius($radius); | |
| @include border-right-radius($radius); | |
| @include border-bottom-radius($radius); |