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,92 @@
<?php
namespace WPDRMS\ASP\BlockEditor;
use WPDRMS\ASP\Utils\Script;
if ( !defined('ABSPATH') ) {
die("You can't access this file directly.");
}
/**
* Full Site Editor and Gutenberg blocks controller
*/
class ASPBlock implements BlockInterface {
/**
* Server side registration of the blocks
*
* @hook init
* @return void
*/
public function register(): void {
if ( !function_exists('register_block_type') ) {
return;
}
$instances = wd_asp()->instances->getWithoutData();
if ( count($instances) === 0 ) {
return;
}
$metadata = require_once ASP_PATH . '/build/js/block-editor.asset.php'; // @phpstan-ignore-line
wp_register_script(
'wdo-asp-block-editor',
ASP_URL_NP . 'build/js/block-editor.js',
$metadata['dependencies'],
$metadata['version'],
array(
'in_footer' => true,
)
);
$metadata = require_once ASP_PATH . '/build/css/block-editor.asset.php'; // @phpstan-ignore-line
wp_register_style(
'wdo-asp-block-editor-style',
ASP_URL_NP . 'build/css/block-editor.css',
$metadata['dependencies'],
$metadata['version'],
);
register_block_type(
'ajax-search-pro/block-asp-main',
array(
'editor_script' => 'wdo-asp-block-editor',
'editor_style' => 'wdo-asp-block-editor-style',
'render_callback' => array( $this, 'render' ),
'attributes' => array(
'instance' => array(
'default' => 1,
'type' => 'integer',
),
'scType' => array(
'default' => 1,
'type' => 'integer',
),
),
)
);
}
/**
* How to render the ajax-search-pro/block-asp-main block via ServerSideRender JSX component
*
* @param array{scType: integer, instance: integer} $atts
* @return string
*/
public function render( array $atts ): string {
// Editor render
if ( isset($_GET['context']) && $_GET['context'] === 'edit' ) {
if ( $atts['scType'] === 1 ) {
return do_shortcode('[wd_asp id="' . $atts['instance'] . '" include_styles=1]');
} else {
return '';
}
} elseif ( $atts['scType'] === 1 ) {
return do_shortcode("[wd_asp id={$atts['instance']}]");
} elseif ( $atts['scType'] === 2 ) {
return do_shortcode("[wpdreams_asp_settings id={$atts['instance']}]");
} elseif ( $atts['scType'] === 3 ) {
return do_shortcode("[wpdreams_ajaxsearchpro_results id={$atts['instance']}]");
}
return '';
}
}

View File

@@ -0,0 +1,12 @@
<?php
namespace WPDRMS\ASP\BlockEditor;
interface BlockInterface {
/**
* Block registration handler
*
* @return void
*/
public function register(): void;
}