Files
roi-theme/wp-content/plugins/thrive-ultimatum/thrive-dashboard/inc/automator/action-fields/class-facebook-standard-options-field.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

54 lines
1.0 KiB
PHP
Executable File

<?php
/**
* Thrive Themes - https://thrivethemes.com
*
* @package thrive-dashboard
*/
namespace TVE\Dashboard\Automator;
if ( ! defined( 'ABSPATH' ) ) {
exit; // Silence is golden!
}
use Thrive\Automator\Items\Action_Field;
class Facebook_Standard_Options_Field extends Action_Field {
public static function get_id() {
return 'fb/standard_options';
}
public static function get_name() {
return __( 'Facebook standard options', 'thrive-dash' );
}
public static function get_description() {
return '';
}
public static function get_placeholder() {
return '';
}
public static function get_type() {
return 'mapping_pair';
}
public static function get_field_values( $filters = [] ) {
return array_merge( Facebook::get_standard_options(), Facebook::get_event_options(), Facebook::get_user_options() );
}
public static function allow_dynamic_data() {
return true;
}
public static function get_preview_template() {
return '';
}
public static function get_validators() {
return [ 'key_value_pair' ];
}
}