Files
roi-theme/wp-content/plugins/thrive-ultimatum/tcb-bridge/editor-elements/class-tcb-ultimatum-shortcode-element.php
root a22573bf0b 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>
2025-11-03 21:04:30 -06:00

72 lines
1.2 KiB
PHP
Executable File

<?php
/**
* Created by PhpStorm.
* User: ovidi
* Date: 7/22/2017
* Time: 6:24 PM
*/
if ( ! defined( 'ABSPATH' ) ) {
exit; // Silence is golden!
}
class TCB_Ultimatum_Shortcode_Element extends TCB_Cloud_Template_Element_Abstract {
/**
* Name of the element
*
* @return string
*/
public function name() {
return __( 'Ultimatum Shortcode', 'thrive-ult');
}
/**
* Return icon class needed for display in menu
*
* @return string
*/
public function icon() {
return '';
}
/**
* Element identifier
*
* @return string
*/
public function identifier() {
return '.thrv_ult_shortcode';
}
/**
* Hidden element
*
* @return string
*/
public function hide() {
return true;
}
public function is_placeholder() {
return false;
}
/**
* Component and control config
*
* @return array
*/
public function own_components() {
return array(
'ultimatum_shortcode' => array(
'config' => array(),
),
'typography' => array( 'hidden' => true ),
'animation' => array( 'hidden' => true ),
'styles-templates' => array( 'hidden' => true ),
'responsive' => array( 'hidden' => true ),
);
}
}