File Manager / wp-content Search Upload New Item Settings File "db5.php" Full path: /home1/epichome/public_html/wp-content/db5.php File size: 60.67 B (60.67 KB bytes) MIME-type: text/x-php Charset: utf-8 Download Open Edit Advanced Editor Back
/home/pharmacy/public_html/wp-content/plugins/sendpress/classes/class-sendpress-screen-options.php
<?php

// Prevent loading this file directly
if ( !defined('SENDPRESS_VERSION') ) {
	header('HTTP/1.0 403 Forbidden');
	die;
}

if(!class_exists('SendPress_Screen_Options')){  

class SendPress_Screen_Options {

	function __construct(){
		add_filter('set-screen-option', array(&$this,'set_screen_options'), 10, 3);

	}
	function set_screen_options($status, $option, $value) {
 		if ( 'sendpress_emails_per_page' == $option ) return $value;
 		if ( 'sendpress_reports_per_page' == $option ) return $value;
 		if ( 'sendpress_lists_per_page' == $option ) return $value;
 		if ( 'sendpress_subscribers_per_page' == $option ) return $value;
 		if ( 'sendpress_queue_per_page' == $option ) return $value;		
	}

}

}