Hallo liebes Forum,
ich habe ein Custom Element (Rocksolid) in Contao 4 erstellt und dieses nun in Contao 5 übernommen. Da passiert nichts wildes. Knackpunkt ist hierbei die Auswahl eines Bildes.
DCA (gekürtzt)
PHP-Code:
<?php
return array(
'label' => array(
'Hintergrund-Wrapper [ANFANG]',
'',
),
...
'fields' => array(
'singleSRC' => array(
'label' => array('Hintergrund Bild', ''),
'exclude' => true,
'inputType' => 'fileTree',
'eval' => array(
'filesOnly' => true,
'fieldType' => 'radio',
'extensions' => 'jpg,png,gif,webp',
'tl_class' => 'cbx clr'
),
'sql' => "binary(16) NULL"
),
...
),
);
Ausgabe (gekürzt)
PHP-Code:
if ( $this->singleSRC )
$file = \FilesModel::findByUuid($this->singleSRC);
Error
request.CRITICAL: Uncaught PHP Exception Symfony\Component\ErrorHandler\Error\ClassNotFound Error: "Attempted to load class "FilesModel" from the global namespace. Did you forget a "use" statement?"
Der Rest funktioniert problemlos. Nur, wenn ich ein Bild auswähle erscheint der Fehler.
Hat jemand eine Idee?