Skip to content
Snippets Groups Projects

feature(popup): popup

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