Skip to content
Snippets Groups Projects

feature(popup): popup

Merged Krzysztof Dyszczyk requested to merge feature/popup into main
1 file
+ 4
2
Compare changes
  • Side-by-side
  • Inline
+ 4
2
@@ -7,8 +7,10 @@ class Reminder {
private $logo_url = 'logo-url';
public function __construct() {
add_action( 'admin_enqueue_scripts', array( $this, 'enqueue_reminder_script' ) );
add_action( 'admin_footer', array( $this, 'display_html_element' ) );
if ( function_exists( 'add_action' ) ) {
add_action( 'admin_enqueue_scripts', array( $this, 'enqueue_reminder_script' ) );
add_action( 'admin_footer', array( $this, 'display_html_element' ) );
}
}
public function enqueue_reminder_script() {
Loading