/**
  * add_cookiebar
  */
 public function add_cookiebar()
 {
     $options = SCNB::get_options();
     do_action('scbn_custom_style', $options);
     require_once SCNB_PLUGIN_DIR . 'includes/front-cookiebar.php';
 }
Exemple #2
0
 /**
  * save_default_options
  * runed on activation of the plugin
  * helps with comatibility with polylang and wpml
  * @since 1.4
  */
 public static function save_default_options()
 {
     $options = get_option('scnb_settings');
     if (empty($options)) {
         $options = SCNB::get_options();
         update_option('scnb_settings', $options);
     }
     return;
 }