<?php
// Layout contenu_seo — bloc éditorial SEO repliable. Pas d'entête (le H2 vit dans sections).

defined('ABSPATH') || exit;

$l = 'contenu_seo';

return cvb_layout($l, 'Contenu SEO', [
    cvb_field("field_cvb_{$l}_intro", 'intro', 'Intro', 'wysiwyg', [
        'tabs'         => 'all',
        'media_upload' => 0,
    ]),
    cvb_repeater("field_cvb_{$l}_sections", 'sections', 'Sections', [
        cvb_field("field_cvb_{$l}_sections_titre", 'titre', 'Titre', 'text'),
        cvb_field("field_cvb_{$l}_sections_contenu", 'contenu', 'Contenu', 'wysiwyg', [
            'tabs'         => 'all',
            'media_upload' => 0,
        ]),
    ]),
    cvb_repeater("field_cvb_{$l}_sources", 'sources', 'Sources', [
        cvb_field("field_cvb_{$l}_sources_label", 'label', 'Label', 'text'),
        cvb_field("field_cvb_{$l}_sources_url", 'url', 'URL', 'url'),
    ], ['layout' => 'table']),
    cvb_field("field_cvb_{$l}_replie", 'replie', 'Replié par défaut', 'true_false', [
        'ui'            => 1,
        'default_value' => 1,
    ]),
]);
