Files
roi-theme/wp-content/plugins/thrive-ultimatum/tcb-bridge/editor-elements/class-tcb-ultimatum-countdown-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

118 lines
2.3 KiB
PHP
Executable File

<?php
/**
* Created by PhpStorm.
* User: Ovidiu
* Date: 7/20/2017
* Time: 8:31 AM
*/
if ( ! defined( 'ABSPATH' ) ) {
exit; // Silence is golden!
}
class TCB_Ultimatum_Countdown_Element extends TCB_Element_Abstract {
/**
* Name of the element
*
* @return string
*/
public function name() {
return __( 'Ultimatum Countdown', 'thrive-ult');
}
/**
* Get element alternate
*
* @return string
*/
public function alternate() {
return 'thrive, scarcity';
}
/**
* Return icon class needed for display in menu
*
* @return string
*/
public function icon() {
return 'ultimatum';
}
/**
* Element identifier
*
* @return string
*/
public function identifier() {
return '.thrive_ultimatum_shortcode'; //For backwards compatibility
}
/**
* This is only a placeholder element
*
* @return bool
*/
public function is_placeholder() {
return false;
}
/**
* Element HTML
*
* @return string
*/
public function html() {
$content = '';
ob_start();
include TVE_Ult_Const::plugin_path( 'tcb-bridge/editor-layouts/elements/ultimatum-countdown.php' );
$content = ob_get_contents();
ob_end_clean();
return $content;
}
/**
* Element category that will be displayed in the sidebar
*
* @return string
*/
public function category() {
return $this->get_thrive_integrations_label();
}
/**
* Component and control config
*
* @return array
*/
public function own_components() {
return array(
'ultimatum_countdown' => array(
'config' => array(),
),
'typography' => array( 'hidden' => true ),
'layout' => array( 'hidden' => true ),
'borders' => array( 'hidden' => true ),
'animation' => array( 'hidden' => true ),
'background' => array( 'hidden' => true ),
'styles-templates' => array( 'hidden' => true ),
'shadow' => array( 'hidden' => true ),
);
}
/**
* Element info
*
* @return string|string[][]
*/
public function info() {
return array(
'instructions' => array(
'type' => 'help',
'url' => 'ultimatum_countdown',
'link' => 'http://help.thrivethemes.com/en/articles/4426118-how-to-set-up-shortcode-countdown-designs-for-ultimatum-campaigns#add-the-shortcode-to-your-page',
),
);
}
}