| 1 |
<?php |
| 2 |
/** |
| 3 |
* Builder Plugin Compatibility Code |
| 4 |
* |
| 5 |
* @package Themify_Builder |
| 6 |
* @subpackage Themify_Builder/classes |
| 7 |
*/ |
| 8 |
|
| 9 |
/** |
| 10 |
* @link https://wordpress.org/plugins/event-tickets/ |
| 11 |
*/ |
| 12 |
class Themify_Builder_Plugin_Compat_EventTickets { |
| 13 |
|
| 14 |
static function init() { |
| 15 |
add_action( 'wp_footer', [ __CLASS__, 'wp_footer' ], 18 ); |
| 16 |
} |
| 17 |
|
| 18 |
static function wp_footer():void { |
| 19 |
themify_enque_style( 'tf_event_tickets', THEMIFY_BUILDER_URI .'/includes/plugin-compat/css/event-tickets.css', null, THEMIFY_VERSION,'all',true ); |
| 20 |
} |
| 21 |
} |