We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi, The following will add just a TextField, not a ColorField:
class GalleryImageAssetFormFactoryExtension extends Extension { public function updateFormFields(FieldList $fields, $controller, $formName, $context) { $image = isset($context['Record']) ? $context['Record'] : null; if ($image && $image->appCategory() === 'image') { /* other code */ $fields->insertAfter( 'DescriptionSide', ColorField::create('DescriptionColor') ); /* other code */ } } }
--- Name: myproject --- SilverStripe\Core\Manifest\ModuleManifest: project: mysite SilverStripe\Assets\Image: extensions: - GalleryImageExtension SilverStripe\AssetAdmin\Forms\ImageFormFactory: extensions: - GalleryImageAssetFormFactoryExtension
It seems a react-component is nedeed.
g4b0
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi,
The following will add just a TextField, not a ColorField:
It seems a react-component is nedeed.
g4b0
The text was updated successfully, but these errors were encountered: