null, 'class' => '', 'id' => '', 'ar' => 0, // auto_resize 'unload_cb' => false, // onunload callback ); extract( $defaults ); extract( $args, EXTR_OVERWRITE ); if ( !empty( $ar ) ) { $auto_resize = '&auto_resize=1'; } else { $auto_resize = ''; } $unload_cb = isset( $unload_cb ) ? '&unload_cb=' . $unload_cb : ''; $url_glue = false !== strpos( $link, '?' ) ? '&' : '?'; $link .= $url_glue . 'compact=1'; $nonce_snippet = '&_icl_nonce=' . wp_create_nonce( 'reminder_popup_nonce' ); $action_and_nonce = 'admin.php?page=' . ICL_PLUGIN_FOLDER . "/menu/languages.php&icl_action=reminder_popup{$nonce_snippet}{$auto_resize}{$unload_cb}" . "&target=" . urlencode( $link ); if ( !empty( $id ) ) { $id = ' id="' . $id . '"'; } if ( isset( $title ) && !$just_url ) { return ''; } else { if ( !$just_url ) { return ''; } else { return $action_and_nonce; } } } }