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,128 @@
<?php
/**
* Thrive Themes - https://thrivethemes.com
*
* @package thrive-ultimatum
*/
namespace TU\Automator;
if ( ! defined( 'ABSPATH' ) ) {
exit; // Silence is golden!
}
/**
* Class Main
*
* @package TU\Automator
*/
class Main {
public static function init() {
if ( defined( 'THRIVE_AUTOMATOR_RUNNING' )
&& ( ( defined( 'TVE_DEBUG' ) && TVE_DEBUG )
|| ( defined( 'TAP_VERSION' ) && version_compare( TAP_VERSION, '1.0', '>=' ) ) ) ) {
static::add_hooks();
}
}
/**
* @param string $subpath
*
* @return string
*/
public static function get_integration_path( $subpath = '' ) {
return \TVE_Ult_Const::plugin_path( 'automator/' . $subpath );
}
public static function add_hooks() {
add_action( 'tap_output_extra_svg', array( 'TU\Automator\Main', 'display_icons' ) );
add_filter( 'tvd_automator_api_data_sets', array( 'TU\Automator\Main', 'dashboard_sets' ), 1, 1 );
static::load_apps();
static::load_data_objects();
static::load_fields();
static::load_triggers();
static::load_actions();
static::load_action_fields();
}
public static function load_triggers() {
foreach ( static::load_files( 'triggers' ) as $trigger ) {
\thrive_automator_register_trigger( new $trigger() );
}
}
public static function load_apps() {
foreach ( static::load_files( 'apps' ) as $app ) {
\thrive_automator_register_app( new $app() );
}
}
public static function load_actions() {
foreach ( static::load_files( 'actions' ) as $action ) {
\thrive_automator_register_action( new $action() );
}
}
public static function load_action_fields() {
foreach ( static::load_files( 'action-fields' ) as $field ) {
\thrive_automator_register_action_field( new $field() );
}
}
public static function load_fields() {
foreach ( static::load_files( 'fields' ) as $field ) {
\thrive_automator_register_data_field( new $field() );
}
}
public static function load_data_objects() {
foreach ( static::load_files( 'data-objects' ) as $data_object ) {
\thrive_automator_register_data_object( new $data_object() );
}
}
public static function load_files( $type ) {
$integration_path = static::get_integration_path( $type );
$local_classes = array();
foreach ( glob( $integration_path . '/*.php' ) as $file ) {
require_once $file;
$class = 'TU\Automator\\' . static::get_class_name_from_filename( $file );
if ( class_exists( $class ) ) {
$local_classes[] = $class;
}
}
return $local_classes;
}
public static function get_class_name_from_filename( $filename ) {
$name = preg_replace( array( '#^class-#', '#-trigger$#', '#-action$#' ), '', basename( $filename, '.php' ) );
return str_replace( '-', '_', ucwords( $name, '-' ) );
}
public static function display_icons() {
include static::get_integration_path( 'icons.svg' );
}
/**
* Enroll campaign_data as data that can be used in TD for Automator actions
*
* @param $sets
*
* @return mixed
*/
public static function dashboard_sets( $sets ) {
$sets[] = 'campaign_data';
return $sets;
}
}