| Server IP : 167.235.67.158 / Your IP : 216.73.216.95 Web Server : Apache System : Linux ubuntu-8gb-nbg1-1 6.8.0-111-generic #111-Ubuntu SMP PREEMPT_DYNAMIC Sat Apr 11 23:16:02 UTC 2026 x86_64 User : upstairsbar.co.uk ( 982) PHP Version : 8.3.6 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/bzcreative.co.uk/wp-content/plugins/flamingo/admin/includes/ |
Upload File : |
<?php
function flamingo_current_action() {
if ( isset( $_REQUEST['delete_all'] ) or isset( $_REQUEST['delete_all2'] ) ) {
return 'delete_all';
}
if ( isset( $_REQUEST['action'] ) and -1 !== $_REQUEST['action'] ) {
return $_REQUEST['action'];
}
if ( isset( $_REQUEST['action2'] ) and -1 !== $_REQUEST['action2'] ) {
return $_REQUEST['action2'];
}
return false;
}
function flamingo_get_all_ids_in_trash( $post_type ) {
global $wpdb;
return $wpdb->get_col( $wpdb->prepare(
"SELECT ID FROM %i WHERE post_status = 'trash' AND post_type = %s",
$wpdb->posts,
$post_type
) );
}