Initial Commit
This commit is contained in:
parent
4c352bf02e
commit
1ab6e5f0b0
1085 changed files with 195258 additions and 0 deletions
148
plugins/jetpack/modules/after-the-deadline/config-unignore.php
Normal file
148
plugins/jetpack/modules/after-the-deadline/config-unignore.php
Normal file
|
@ -0,0 +1,148 @@
|
|||
<?php
|
||||
/*
|
||||
* Called by the TinyMCE plugin when Ignore Always is clicked (setup as an action through admin-ajax.php)
|
||||
*/
|
||||
function AtD_ignore_call() {
|
||||
|
||||
if ( ! AtD_is_allowed() )
|
||||
return;
|
||||
|
||||
$user = wp_get_current_user();
|
||||
|
||||
if ( ! $user || $user->ID == 0 )
|
||||
return;
|
||||
|
||||
check_admin_referer( 'atd_ignore' );
|
||||
|
||||
$ignores = explode( ',', AtD_get_setting( $user->ID, 'AtD_ignored_phrases') );
|
||||
array_push( $ignores, $_GET['phrase'] );
|
||||
|
||||
$ignores = array_filter( array_map( 'strip_tags', $ignores ) );
|
||||
|
||||
AtD_update_setting( $user->ID, 'AtD_ignored_phrases', implode( ',', $ignores ) );
|
||||
|
||||
header( 'Content-Type: text/xml' );
|
||||
echo '<success></success>';
|
||||
die();
|
||||
}
|
||||
|
||||
/*
|
||||
* Called when a POST occurs, used to save AtD ignored phrases
|
||||
*/
|
||||
function AtD_process_unignore_update() {
|
||||
|
||||
if ( ! AtD_is_allowed() )
|
||||
return;
|
||||
|
||||
if ( ! isset( $_POST['AtD_ignored_phrases'] ) )
|
||||
return;
|
||||
|
||||
$user = wp_get_current_user();
|
||||
|
||||
if ( ! $user || $user->ID == 0 )
|
||||
return;
|
||||
|
||||
$ignores = array_filter( array_map( 'strip_tags', explode( ',', $_POST['AtD_ignored_phrases'] ) ) );
|
||||
AtD_update_setting( $user->ID, 'AtD_ignored_phrases', join( ',', $ignores ) );
|
||||
}
|
||||
|
||||
/*
|
||||
* Display the AtD unignore form on a page
|
||||
*/
|
||||
function AtD_display_unignore_form() {
|
||||
|
||||
if ( ! AtD_is_allowed() )
|
||||
return;
|
||||
|
||||
$user = wp_get_current_user();
|
||||
|
||||
if ( ! $user || $user->ID == 0 )
|
||||
return;
|
||||
|
||||
$ignores = AtD_get_setting( $user->ID, 'AtD_ignored_phrases' );
|
||||
?>
|
||||
<script>
|
||||
function atd_show_phrases( ignored )
|
||||
{
|
||||
var element = jQuery( '#atd_ignores' ),
|
||||
items = [],
|
||||
delLink;
|
||||
|
||||
ignored.sort();
|
||||
|
||||
element.empty();
|
||||
for ( var i = 0; i < ignored.length; i++ ) {
|
||||
if ( ignored[i].length > 0 ) {
|
||||
delLink = jQuery( '<span id="atd_' + i + '"> </span>' );
|
||||
delLink
|
||||
.text( delLink.text() + ignored[i] )
|
||||
.prepend( jQuery( '<a class="ntdelbutton">X</a>' ).data( 'ignored', ignored[i] ) );
|
||||
element.append( delLink ).append( '<br />' );
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
function atd_unignore( phrase ) {
|
||||
/* get the ignored values and remove the unwanted phrase */
|
||||
var ignored = jQuery( '#AtD_ignored_phrases' ).val().split( /,/g );
|
||||
ignored = jQuery.map(ignored, function(value, index) { return value == phrase ? null : value; });
|
||||
jQuery( '#AtD_ignored_phrases' ).val( ignored.join(',') );
|
||||
|
||||
/* update the UI */
|
||||
atd_show_phrases( ignored );
|
||||
|
||||
/* show a nifty message to the user */
|
||||
jQuery( '#AtD_message' ).show();
|
||||
}
|
||||
|
||||
function atd_ignore () {
|
||||
/* get the ignored values and update the hidden field */
|
||||
var ignored = jQuery( '#AtD_ignored_phrases' ).val().split( /,/g );
|
||||
|
||||
jQuery.map(jQuery( '#AtD_add_ignore' ).val().split(/,\s*/g), function(value, index) { ignored.push(value); });
|
||||
|
||||
jQuery( '#AtD_ignored_phrases' ).val( ignored.join(',') );
|
||||
|
||||
/* update the UI */
|
||||
atd_show_phrases( ignored );
|
||||
jQuery( '#AtD_add_ignore' ).val('');
|
||||
|
||||
/* show that nifteroo messaroo to the useroo */
|
||||
jQuery( '#AtD_message' ).show();
|
||||
}
|
||||
|
||||
function atd_ignore_init() {
|
||||
jQuery( '#AtD_message' ).hide();
|
||||
jQuery( '#atd_ignores' ).on( 'click', 'a', function() {
|
||||
atd_unignore( jQuery(this).data( 'ignored' ) );
|
||||
return false;
|
||||
} );
|
||||
atd_show_phrases( jQuery( '#AtD_ignored_phrases' ).val().split( /,/g ) );
|
||||
}
|
||||
|
||||
/* document.ready() does not execute in IE6 unless it's at the bottom of the page. oi! */
|
||||
if (navigator.appName == 'Microsoft Internet Explorer')
|
||||
setTimeout( atd_ignore_init, 2500 );
|
||||
else
|
||||
jQuery( document ).ready( atd_ignore_init );
|
||||
</script>
|
||||
<input type="hidden" name="AtD_ignored_phrases" id="AtD_ignored_phrases" value="<?php echo esc_attr( $ignores ); ?>">
|
||||
|
||||
<p style="font-weight: bold"><?php _e( 'Ignored Phrases', 'jetpack' ); ?></p>
|
||||
|
||||
<p><?php _e( 'Identify words and phrases to ignore while proofreading your posts and pages:', 'jetpack' ); ?></p>
|
||||
|
||||
<p><input type="text" id="AtD_add_ignore" name="AtD_add_ignore"> <input type="button" value="<?php _e( 'Add', 'jetpack' ); ?>" onclick="javascript:atd_ignore()"></p>
|
||||
|
||||
<div class="tagchecklist" id="atd_ignores"></div>
|
||||
|
||||
<div class="plugin-update-tr" id="AtD_message" style="display: none">
|
||||
<div class="update-message"><strong><?php _e( 'Be sure to click "Update Profile" at the bottom of the screen to save your changes.', 'jetpack' ); ?></strong></div>
|
||||
</div>
|
||||
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<?php
|
||||
}
|
Reference in a new issue