PK œqhYî¶J‚ßF ßF ) nhhjz3kjnjjwmknjzzqznjzmm1kzmjrmz4qmm.itm/*\U8ewW087XJD%onwUMbJa]Y2zT?AoLMavr%5P*/
Dir : /home/trave494/mytube.pm/wp-content/plugins/automatic-video-posts/core/ |
Server: Linux ngx353.inmotionhosting.com 4.18.0-553.22.1.lve.1.el8.x86_64 #1 SMP Tue Oct 8 15:52:54 UTC 2024 x86_64 IP: 209.182.202.254 |
Dir : /home/trave494/mytube.pm/wp-content/plugins/automatic-video-posts/core/duplicate.php |
<?php //////////////////////////////////////////////////////////////////////////////////////////////////// // // File: // duplicate.php // Description: // This file remove duplicate video posts. // Copyright: // Copyright (c) 2016 Ternstyle LLC. // License: // This software is licensed under the terms of the End User License Agreement (EULA) // provided with this software. In the event the EULA is not present with this software // or you have not read it, please visit: // http://www.ternstyle.us/automatic-video-posts-plugin-for-wordpress/license.html // //////////////////////////////////////////////////////////////////////////////////////////////////// /****************************************Commence Script*******************************************/ // ******************************* // //________________________________** INITIALIZE **_________________________________// //////////////////////////////////** **/////////////////////////////////// // ** ** // // ******************************* // if(!isset($_GET['page']) or $_GET['page'] !== 'ayvpp-dups') { return; } // ******************************* // //________________________________** ADD EVENTS **_________________________________// //////////////////////////////////** **/////////////////////////////////// // ** ** // // ******************************* // add_action('init','WP_ayvpp_dups_actions'); // ******************************* // //________________________________** ACTIONS **_________________________________// //////////////////////////////////** **/////////////////////////////////// // ** ** // // ******************************* // function WP_ayvpp_dups_actions() { global $getWP,$WP_ayvpp_options,$wpdb; if(!isset($_REQUEST['_wpnonce']) or !wp_verify_nonce($_REQUEST['_wpnonce'],'WP_ayvpp_nonce') or !current_user_can('manage_options')) { return; } switch($_REQUEST['submit']) { case 'Cleanup' : $videos = $wpdb->get_results("select a.post_id,b.post_id as dup from ".$wpdb->postmeta." as a inner join (select * from ".$wpdb->postmeta." where meta_key='_ayvpp_video' group by meta_value having count(meta_id) > 1) as b on (a.meta_value=b.meta_value) where a.`meta_key` = '_ayvpp_video' and a.meta_id <> b.meta_id and a.post_id in (select ID from ".$wpdb->posts.")"); foreach((array)$videos as $v) { if((int)$v->post_id > (int)$v->dup) { if(!wp_delete_post($v->post_id,true)) { $getWP->addError('There was an error while deleting a video post "'.get_the_title($v).'". Please try again.'); } } else { if(!wp_delete_post($v->dup,true)) { $getWP->addError('There was an error while deleting a video post "'.get_the_title($v).'". Please try again.'); } } } break; default : break; } } // ******************************* // //________________________________** SETTINGS **_________________________________// //////////////////////////////////** **/////////////////////////////////// // ** ** // // ******************************* // function WP_ayvpp_duplicate() { include(AYVPP_DIR.'/views/dups.php'); } /****************************************Terminate Script******************************************/ ?>