1. RSCE Meta Let's define some RSCE meta fields!
Label
Type
Backend Template
Standard Fields
Wrapper Type

2. RSCE Input Fields Add yor required RSCE fields!
Add Input Field

{{label.name}}

Edit: {{label.name}}

We're excited to have you join us for our upcoming event. Please arrive at the museum on time to check in and get started.

  • Date: Saturday, April 15
  • Time: 10:00am - 12:00pm

3. Result
<?php
// rsce_{{file_name}}_config.php

return array(
    'label' => array('{{label}}', '{{description}}'),
    'types' => array('{{type}}'),
    'contentCategory' => 'texts',
    'moduleCategory' => 'miscellaneous',
    'beTemplate' => 'be_wildcard',
    'standardFields' => array('headline', 'cssID'),
    'wrapper' => array(
        'type' => '{{wrapper_type}}',
    ),
    'fields' => array(
        'text' => array(
            'label' => array('Text', 'Beschreibung...'),
            'eval' => array('rte' => 'tinyMCE'),
            'inputType' => 'textarea',
        ),
    ),
);