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,28 @@
<?php
/**
* Not saving any log as no do_action left in action data store
*
* Class BWFAN_AS_V2_Log_Store
*/
class BWFAN_AS_V2_Log_Store extends ActionScheduler_Logger {
public function log( $action_id, $message, ?DateTime $date = null ) {
}
public function get_entry( $entry_id ) {
return new ActionScheduler_NullLogEntry();
}
public function get_logs( $action_id ) {
return array();
}
public function init() {
}
public function clear_deleted_action_logs( $action_id ) {
}
}