File: /var/www/html/wp-content/plugins/wp-recipe-maker/templates/settings/group-template-editor.php
<?php
/**
* Template for the plugin settings structure.
*
* @link https://bootstrapped.ventures
* @since 5.8.0
*
* @package WP_Recipe_Maker
* @subpackage WP_Recipe_Maker/templates/settings
*/
$template_editor = array(
'id' => 'templateEditor',
'icon' => 'crane',
'name' => __( 'Template Editor', 'wp-recipe-maker' ),
'description' => __( 'Use the Template Editor to manage and customize all templates on your website. Use it to alter the recipe box, recipe snippets, print version, ... to match your style!', 'wp-recipe-maker' ),
'dependency' => array(
'id' => 'recipe_template_mode',
'value' => 'modern',
),
'settings' => array(
array(
'name' => __( 'Template Editor', 'wp-recipe-maker' ),
'documentation' => 'https://help.bootstrapped.ventures/article/53-template-editor',
'type' => 'button',
'button' => __( 'Open the Template Editor', 'wp-recipe-maker' ),
'link' => admin_url( 'admin.php?page=wprm_template_editor' ),
),
array(
'id' => 'template_editor_preview_recipe',
'name' => __( 'Default Preview Recipe', 'wp-recipe-maker' ),
'description' => __( 'Default recipe to use for the Template Editor preview.', 'wp-recipe-maker' ),
'type' => 'dropdownRecipe',
'options' => array(
'demo' => __( 'Use WPRM Demo Recipe', 'wp-recipe-maker' ),
),
'default' => 'demo',
),
array(
'id' => 'template_editor_undo_redo_history',
'name' => __( 'Undo/Redo History', 'wp-recipe-maker' ),
'description' => __( 'Store template edit history and show Undo/Redo buttons in the Template Editor. Disable this if history tracking causes performance issues on your device.', 'wp-recipe-maker' ),
'type' => 'toggle',
'default' => true,
),
),
);