Commit inicial - WordPress Análisis de Precios Unitarios

- WordPress core y plugins
- Tema Twenty Twenty-Four configurado
- Plugin allow-unfiltered-html.php simplificado
- .gitignore configurado para excluir wp-config.php y uploads

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
root
2025-11-03 21:04:30 -06:00
commit a22573bf0b
24068 changed files with 4993111 additions and 0 deletions

View File

@@ -0,0 +1,67 @@
<?php
if ( isset( $_GET['aDBc_view'] ) ) {
// If the user wants to perform custom cleaning
if ( $_GET['aDBc_view'] == "revision" ||
$_GET['aDBc_view'] == "auto-draft" ||
$_GET['aDBc_view'] == "trash-posts" ) {
include_once 'custom-clean-view/class_clean_revision_draft_trash.php';
new ADBC_Clean_Revision_Trash_Draft( $_GET['aDBc_view'] );
} else if ( $_GET['aDBc_view'] == "moderated-comments" ||
$_GET['aDBc_view'] == "spam-comments" ||
$_GET['aDBc_view'] == "trash-comments" ||
$_GET['aDBc_view'] == "pingbacks" ||
$_GET['aDBc_view'] == "trackbacks" ) {
include_once 'custom-clean-view/class_clean_comment.php';
new ADBC_Clean_Comment( $_GET['aDBc_view'] );
} else if ( $_GET['aDBc_view'] == "orphan-postmeta" ||
$_GET['aDBc_view'] == "orphan-commentmeta" ||
$_GET['aDBc_view'] == "orphan-usermeta" ||
$_GET['aDBc_view'] == "orphan-termmeta" ) {
include_once 'custom-clean-view/class_clean_meta_comment_post_user_term.php';
new ADBC_Clean_Meta_Comment_Post_User_Term( $_GET['aDBc_view'] );
} else if ( $_GET['aDBc_view'] == "orphan-relationships" ) {
include_once 'custom-clean-view/class_clean_relationships.php';
new ADBC_Clean_Relationship();
} else if ( $_GET['aDBc_view'] == "expired-transients" ) {
include_once 'custom-clean-view/class_clean_transient.php';
new ADBC_Clean_Transient( $_GET['aDBc_view'] );
} else if ( $_GET['aDBc_view'] == "add_cleanup_schedule" ) {
include_once 'custom-schedule-view/class_add_cleanup_schedule.php';
new ADBC_SCHEDULE_CLEANUP( $_GET['aDBc_view'] );
} else if ( $_GET['aDBc_view'] == "edit_cleanup_schedule" ) {
include_once 'custom-schedule-view/class_edit_cleanup_schedule.php';
new EDIT_SCHEDULE_CLEANUP($_GET['aDBc_view']);
}
} else {
// Else, return the general clean-up page
include_once 'class_general_cleanup.php';
}
?>