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,56 @@
<?php
/**
* Thrive Themes - https://thrivethemes.com
*
* @package thrive-ultimatum
*/
namespace TU\Automator;
if ( ! defined( 'ABSPATH' ) ) {
exit; // Silence is golden!
}
class Campaign_Event_Id_Data_Field extends \Thrive\Automator\Items\Data_Field {
/**
* @inheritDoc
*/
public static function get_id() {
return 'campaign_event_id';
}
/**
* @inheritDoc
*/
public static function get_supported_filters() {
return array( 'number_comparison' );
}
/**
* @inheritDoc
*/
public static function get_name() {
return __( 'ID of the event that triggered the countdown', 'thrive-ult' );
}
/**
* @inheritDoc
*/
public static function get_description() {
return __( 'User targets by the specific event ID that triggered the campaign', 'thrive-ult' );
}
/**
* @inheritDoc
*/
public static function get_placeholder() {
return '';
}
public static function get_field_value_type() {
return static::TYPE_NUMBER;
}
public static function get_dummy_value() {
return 34;
}
}