PluginProbe
Black Bar / 2.1.2
Black Bar v2.1.2
trunk 1.0.0 1.1.0 1.2.0 2.0.0 2.1.0 2.1.1 2.1.2 2.1.3 2.1.4 2.2.0 2.2.1 3.0.0 3.1.0 4.0.0 4.0.1 4.0.2 4.0.3 4.1.0 4.1.1 4.1.2 4.1.3 4.1.4 4.2.0
blackbar / compatibility.php

compatibility.php in Black Bar 2.1.2, at compatibility.php

23 lines 475 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 defined( 'WPINC' ) || die;
4
5 /**
6 * @return array
7 * @see https://docs.gravityforms.com/gform_noconflict_scripts/
8 */
9 add_filter( 'gform_noconflict_scripts', function( array $scripts ) {
10 $scripts[] = 'blackbar';
11 return $scripts;
12 });
13
14 /**
15 * @return array
16 * @see https://docs.gravityforms.com/gform_noconflict_styles/
17 */
18 add_filter( 'gform_noconflict_styles', function( array $styles ) {
19 $styles[] = 'blackbar';
20 $styles[] = 'blackbar-syntax';
21 return $styles;
22 });
23