wp-seo-admin.js
7.31 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
/* global wpseoAdminL10n */
/* global ajaxurl */
/* global setWPOption */
/* global tb_remove */
/* jshint -W097 */
/* jshint -W003 */
/* jshint unused:false */
'use strict';
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() {
var companyOrPerson = jQuery( this ).val();
if ( 'company' === companyOrPerson ) {
jQuery( '#knowledge-graph-company' ).show();
jQuery( '#knowledge-graph-person' ).hide();
}
else if ( 'person' === companyOrPerson ) {
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 activeTab = window.location.hash.replace( '#top#', '' );
// default to first tab
if ( activeTab === '' || activeTab === '#_=_' ) {
activeTab = jQuery( '.wpseotab' ).attr( 'id' );
}
jQuery( '#' + activeTab ).addClass( 'active' );
jQuery( '#' + activeTab + '-tab' ).addClass( 'nav-tab-active' );
jQuery( '.nav-tab-active' ).click();
}
);
/**
* Detects the wrong use of variables in title and description templates
*
* @param {element} e
*/
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', 'caption', 'focuskw', 'pt_single', 'pt_plural', 'modified', 'id' ];
var specialVariables = [ 'term404', 'searchphrase' ];
var taxonomyVariables = [ 'term_title', 'term_description' ];
var taxonomyPostVariables = [ 'category', 'category_description', 'tag', 'tag_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, taxonomyPostVariables );
}
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, taxonomyPostVariables );
}
else if ( e.hasClass( 'date-template' ) ) {
wrongVariables = wrongVariables.concat( authorVariables, postVariables, specialVariables, taxonomyVariables, taxonomyPostVariables );
}
else if ( e.hasClass( 'search-template' ) ) {
wrongVariables = wrongVariables.concat( authorVariables, dateVariables, postVariables, taxonomyVariables, taxonomyPostVariables, [ 'term404' ] );
}
else if ( e.hasClass( 'error404-template' ) ) {
wrongVariables = wrongVariables.concat( authorVariables, dateVariables, postVariables, taxonomyVariables, taxonomyPostVariables, [ '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' );
}
}
/**
* Sets a specific WP option
*
* @param {string} option The option to update
* @param {string} newval The new value for the option
* @param {string} hide The ID of the element to hide on success
* @param {string} nonce The nonce for the action
*/
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();
}
}
);
}
/**
* Do the kill blocking files action
*
* @param {string} nonce
*/
function wpseoKillBlockingFiles( 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 );
}
}
);
}
/**
* Copies the meta description for the homepage
*/
function wpseoCopyHomeMeta() {
jQuery( '#og_frontpage_desc' ).val( jQuery( '#meta_description' ).val() );
}
/**
* Makes sure we store the action hash so we can return to the right hash
*/
function wpseoSetTabHash() {
var 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', wpseoSetTabHash );
/**
* When the hash changes, get the base url from the action and then add the current hash
*/
jQuery( document ).on( 'ready', wpseoSetTabHash );
function wpseo_add_fb_admin() {
var target_form = jQuery('#TB_ajaxContent');
jQuery.post(
ajaxurl,
{
_wpnonce: target_form.find('input[name=fb_admin_nonce]').val(),
admin_name: target_form.find('input[name=fb_admin_name]').val(),
admin_id: target_form.find('input[name=fb_admin_id]').val(),
action: 'wpseo_add_fb_admin'
},
function( response ) {
var resp = jQuery.parseJSON( response );
target_form.find('p.notice').remove();
switch( resp.success ) {
case 1:
target_form.find('input[type=text]').val( '' );
jQuery( '#user_admin' ).append( resp.html );
jQuery( '#connected_fb_admins').show();
tb_remove();
break;
case 0 :
jQuery( resp.html ).insertAfter( target_form.find( 'h3' ) );
break;
}
}
);
}