Auto Delete Posts Options
settings['PerPostOrSite']) {
/* Choose which category to delete from */
if (DELETE_POSTS == $this->settings['PostAction']) {
require_once(dirname(__FILE__) . '/auto-delete-posts.delete.php');
}
/* Choose which category to move posts to */
if ((MOVE_POSTS == $this->settings['PostAction']) || (ADD_CAT == $this->settings['PostAction'])) {
require_once(dirname(__FILE__) . '/auto-delete-posts.move.php');
}
/* Preview what posts would be deleted. */
if (PREVIEW == $this->settings['PostAction']) {
require_once(dirname(__FILE__) . '/auto-delete-posts.preview.php');
}
} else {
if (MOVE_POSTS == $this->settings['PostAction']) {
require_once(dirname(__FILE__) . '/auto-delete-posts.move.php');
}
require_once(dirname(__FILE__) . '/auto-delete-posts.preview.php');
}
?>