- 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>
54 lines
1.0 KiB
PHP
Executable File
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' ];
|
|
}
|
|
}
|