Skip to content

Commit

Permalink
Remove obsolete registration
Browse files Browse the repository at this point in the history
  • Loading branch information
bytehead committed Jan 3, 2022
1 parent 0894a40 commit f6b8d50
Showing 1 changed file with 28 additions and 30 deletions.
58 changes: 28 additions & 30 deletions core-bundle/src/Resources/contao/config/config.php
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,6 @@
use Contao\PurgeData;
use Contao\RadioButton;
use Contao\RadioTable;
use Contao\RootPageDependentModule;
use Contao\SectionWizard;
use Contao\SelectMenu;
use Contao\SerpPreview;
Expand Down Expand Up @@ -333,35 +332,34 @@
// Back end form fields
$GLOBALS['BE_FFL'] = array
(
'text' => TextField::class,
'password' => Password::class,
'textStore' => TextStore::class,
'textarea' => TextArea::class,
'select' => SelectMenu::class,
'checkbox' => CheckBox::class,
'checkboxWizard' => CheckBoxWizard::class,
'radio' => RadioButton::class,
'radioTable' => RadioTable::class,
'inputUnit' => InputUnit::class,
'trbl' => TrblField::class,
'chmod' => ChmodTable::class,
'picker' => Picker::class,
'pageTree' => PageTree::class,
'pageSelector' => PageSelector::class,
'fileTree' => FileTree::class,
'fileSelector' => FileSelector::class,
'fileUpload' => Upload::class,
'tableWizard' => TableWizard::class,
'listWizard' => ListWizard::class,
'optionWizard' => OptionWizard::class,
'moduleWizard' => ModuleWizard::class,
'keyValueWizard' => KeyValueWizard::class,
'imageSize' => ImageSize::class,
'timePeriod' => TimePeriod::class,
'metaWizard' => MetaWizard::class,
'sectionWizard' => SectionWizard::class,
'serpPreview' => SerpPreview::class,
'rootPageDependentModule' => RootPageDependentModule::class
'text' => TextField::class,
'password' => Password::class,
'textStore' => TextStore::class,
'textarea' => TextArea::class,
'select' => SelectMenu::class,
'checkbox' => CheckBox::class,
'checkboxWizard' => CheckBoxWizard::class,
'radio' => RadioButton::class,
'radioTable' => RadioTable::class,
'inputUnit' => InputUnit::class,
'trbl' => TrblField::class,
'chmod' => ChmodTable::class,
'picker' => Picker::class,
'pageTree' => PageTree::class,
'pageSelector' => PageSelector::class,
'fileTree' => FileTree::class,
'fileSelector' => FileSelector::class,
'fileUpload' => Upload::class,
'tableWizard' => TableWizard::class,
'listWizard' => ListWizard::class,
'optionWizard' => OptionWizard::class,
'moduleWizard' => ModuleWizard::class,
'keyValueWizard' => KeyValueWizard::class,
'imageSize' => ImageSize::class,
'timePeriod' => TimePeriod::class,
'metaWizard' => MetaWizard::class,
'sectionWizard' => SectionWizard::class,
'serpPreview' => SerpPreview::class
);

// Front end form fields
Expand Down

0 comments on commit f6b8d50

Please sign in to comment.