You are here

function popup_maker_refresh_popups in Popup Maker - All popup types 7

1 call to popup_maker_refresh_popups()
popup_maker_settings_view in ./popup_maker.admin.inc

File

./popup_maker.admin.inc, line 159

Code

function popup_maker_refresh_popups() {
  $config = variable_get('popup_maker_settings', array(
    'api_key' => null,
    'popups' => array(),
    'popupSettings' => array(),
    'user' => array(),
  ));
  if (popup_maker_refresh_data($config['api_key'])) {
    drupal_set_message('Popups list refreshed successfully');
  }
  drupal_goto('admin/config/content/popup_maker');
}