HEX
Server: Microsoft-IIS/8.5
System: Windows NT YDAWBH120 6.3 build 9600 (Windows Server 2012 R2 Standard Edition) AMD64
User: tentjecom_web (0)
PHP: 7.4.14
Disabled: NONE
Upload Files
File: D:/HostingSpaces/RImmers1/besttalent.nl/wwwroot/wp-content/plugins/wordpress-seo/js/wp-seo-admin.js
jQuery(document).ready(function () {

    /* Fix banner images overlapping help texts */
    jQuery('.screen-meta-toggle a').click(function () {
        jQuery("#sidebar-container").toggle();
    });

    // events
    jQuery('#enablexmlsitemap').change(function () {
        jQuery('#sitemapinfo').toggle(jQuery(this).is(':checked'));
    }).change();

    jQuery('#breadcrumbs-enable').change(function () {
        jQuery('#breadcrumbsinfo').toggle(jQuery(this).is(':checked'));
    }).change();

    jQuery('#disable_author_sitemap').change(function () {
        jQuery('#xml_user_block').toggle(!jQuery(this).is(':checked'));
    }).change();

    jQuery('#cleanpermalinks').change(function () {
        jQuery('#cleanpermalinksdiv').toggle(jQuery(this).is(':checked'));
    }).change();

    jQuery('#wpseo-tabs').find('a').click(function () {
        jQuery('#wpseo-tabs').find('a').removeClass('nav-tab-active');
        jQuery('.wpseotab').removeClass('active');

        var id = jQuery(this).attr('id').replace('-tab', '');
        jQuery('#' + id).addClass('active');
        jQuery(this).addClass('nav-tab-active');
    });

    jQuery("#company_or_person").change(function () {
        if ('company' == jQuery(this).val()) {
            jQuery('#knowledge-graph-company').show();
            jQuery('#knowledge-graph-person').hide();
        } else if ('person' == jQuery(this).val()) {
            jQuery('#knowledge-graph-company').hide();
            jQuery('#knowledge-graph-person').show();
        } else {
            jQuery('#knowledge-graph-company').hide();
            jQuery('#knowledge-graph-person').hide();
        }
    }).change();

    jQuery('.template').change(function () {
        wpseoDetectWrongVariables(jQuery(this));
    }).change();

    // init
    var active_tab = window.location.hash.replace('#top#', '');

    // default to first tab
    if (active_tab == '' || active_tab == '#_=_') {
        active_tab = jQuery('.wpseotab').attr('id');
    }

    jQuery('#' + active_tab).addClass('active');
    jQuery('#' + active_tab + '-tab').addClass('nav-tab-active');

    jQuery('.nav-tab-active').click();

});

function wpseoDetectWrongVariables(e) {
    var warn = false;
    var error_id = '';
    var wrongVariables = [];
    var authorVariables = ['userid', 'name', 'user_description'];
    var dateVariables = ['date'];
    var postVariables = ['title', 'parent_title', 'excerpt', 'excerpt_only', 'tag', 'category', 'category_description', 'tag_description', 'caption', 'focuskw', 'pt_single', 'pt_plural', 'modified', 'id'];
    var specialVariables = ['term404', 'searchphrase'];
    var taxonomyVariables = ['term_title', 'term_description'];
    if (e.hasClass('posttype-template')) {
        wrongVariables = wrongVariables.concat(specialVariables, taxonomyVariables);
    }
    else if (e.hasClass('homepage-template')) {
        wrongVariables = wrongVariables.concat(authorVariables, dateVariables, postVariables, specialVariables, taxonomyVariables);
    }
    else if (e.hasClass('taxonomy-template')) {
        wrongVariables = wrongVariables.concat(authorVariables, dateVariables, postVariables, specialVariables);
    }
    else if (e.hasClass('author-template')) {
        wrongVariables = wrongVariables.concat(postVariables, dateVariables, specialVariables, taxonomyVariables);
    }
    else if (e.hasClass('date-template')) {
        wrongVariables = wrongVariables.concat(authorVariables, postVariables, specialVariables, taxonomyVariables);
    }
    else if (e.hasClass('search-template')) {
        wrongVariables = wrongVariables.concat(authorVariables, dateVariables, postVariables, taxonomyVariables, ['term404']);
    }
    else if (e.hasClass('error404-template')) {
        wrongVariables = wrongVariables.concat(authorVariables, dateVariables, postVariables, taxonomyVariables, ['searchphrase']);
    }
    jQuery.each(wrongVariables, function (index, variable) {
        error_id = e.attr('id') + '-' + variable + '-warning';
        if (e.val().search('%%'+variable+'%%') !== -1) {
            e.addClass('wpseo_variable_warning');
            var msg = wpseoAdminL10n.variable_warning.replace('%s', '%%'+variable+'%%');
            if (jQuery('#' + error_id).length) {
                jQuery('#' + error_id).html(msg);
            } else {
                e.after(' <div id="' + error_id + '" class="wpseo_variable_warning"><div class="clear"></div>' + msg + '</div>');
            }
            warn = true;
        } else {
            if ( jQuery('#' + error_id).length ) {
                jQuery('#' + error_id).remove();
            }
        }
    });
    if (warn === false) {
        e.removeClass('wpseo_variable_warning');
    }
}

// global functions
function setWPOption(option, newval, hide, nonce) {
    jQuery.post(ajaxurl, {
            action: 'wpseo_set_option',
            option: option,
            newval: newval,
            _wpnonce: nonce
        }, function (data) {
            if (data)
                jQuery('#' + hide).hide();
        }
    );
}

function wpseo_killBlockingFiles(nonce) {
    jQuery.post(ajaxurl, {
        action: 'wpseo_kill_blocking_files',
        _ajax_nonce: nonce
    }, function (data) {
        if (data == 'success')
            jQuery('#blocking_files').hide();
        else
            jQuery('#block_files').html(data);
    });
}

function copy_home_meta() {
    jQuery('#og_frontpage_desc').val(jQuery('#meta_description').val());
}

function wpseo_set_tab_hash() {

    conf = jQuery('#wpseo-conf');
    if (conf.length) {
        var currentUrl = conf.attr('action').split('#')[0];
        conf.attr('action', currentUrl + window.location.hash);
    }
}


/**
 * When the hash changes, get the base url from the action and then add the current hash
 */
jQuery(window).on('hashchange', wpseo_set_tab_hash);

/**
 * When the hash changes, get the base url from the action and then add the current hash
 */
jQuery(document).on('ready', wpseo_set_tab_hash);