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,154 @@
<?php
/**
* Created by PhpStorm.
* User: Ovidiu
* Date: 3/28/2017
* Time: 10:09 AM
*/
if ( ! defined( 'ABSPATH' ) ) {
exit; // Silence is golden!
}
/**
* Class TCB_Credit_Card_Element
*/
class TCB_Credit_Element extends TCB_Element_Abstract {
/**
* Name of the element
*
* @return string
*/
public function name() {
return __( 'Credit Card', 'thrive-cb' );
}
/**
* Get element alternate
*
* @return string
*/
public function alternate() {
return 'icon ';
}
/**
* Return icon class needed for display in menu
*
* @return string
*/
public function icon() {
return 'credit';
}
/**
* Text element identifier
*
* @return string
*/
public function identifier() {
return '.thrv-credit';
}
/**
* The HTML is generated from js
*
* @return string
*/
protected function html() {
return '';
}
/**
* Component and control config
*
* @return array
*/
public function own_components() {
return array(
'credit' => array(
'config' => array(
'size' => array(
'config' => array(
'default' => '25',
'min' => '10',
'max' => '150',
'label' => __( 'Size', 'thrive-cb' ),
'um' => [ 'px' ],
),
),
'monochrome_background' => array(
'css_suffix' => [
' .visa-style-4-st0',
' .masterCard-style-4-st0',
' .americanExpress-style-4-st0',
' .payPal-style-4-st0',
' .discover-style-4-st0',
' .bitcoin-style-4-st0',
' .googlePay-style-4-st0',
' .applePay-style-4-st0',
],
'config' => array(
'default' => '#595E60',
'label' => __( 'Color', 'thrive-cb' ),
),
),
'style' => array(
'config' => array(
'label' => __( 'Style', 'thrive-cb' ),
),
),
'stylePicker' => array(
'config' => array(
'label' => __( 'Change style', 'thrive-cb' ),
),
),
'cards' => array(
'config' => array(
'label' => __( 'Change cards', 'thrive-cb' ),
),
),
'preview' => [
'config' => [
'sortable' => true,
],
],
),
'order' => 1,
),
'typography' => [ 'hidden' => true ],
'shadow' => [ 'hidden' => true ],
'layout' => [
'disabled_controls' => [
'Overflow',
'ScrollStyle',
],
],
);
}
/**
* Element category that will be displayed in the sidebar
*
* @return string
*/
public function category() {
return static::get_thrive_advanced_label();
}
/**
* Element info
*
* @return string|string[][]
*/
public function info() {
return [
'instructions' => [
'type' => 'help',
'url' => 'credit_card',
'link' => 'https://help.thrivethemes.com/en/articles/4425794-how-to-use-the-credit-card-element',
],
];
}
}