Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8250917
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 8, 20262026-06-08T00:03:57+00:00 2026-06-08T00:03:57+00:00

Is it possible to override the template for the form type: sonata_type_collection? Ive tried

  • 0

Is it possible to override the template for the form type: “sonata_type_collection”?

Ive tried along these lines:

$formMapper->add('slides', 'sonata_type_collection', array(), array(
                'edit' => 'inline',
                'inline' => 'table',
                'sortable'  => 'priority',
                'template' => 'MyBundle:Form:slides.admin.html.twig'
            ));

but to no avail.

I know I could override the entire template, but I only want to do it for this form, not all the places where I use this form type.

Does anyone know if this is possible?

Thanks

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-08T00:03:58+00:00Added an answer on June 8, 2026 at 12:03 am

    I found a great bit of code in /vendor/sonata-project/admin-bundle/Sonata/AdminBundle/Form/Extension/Field/Type/FormTypeFieldExtension.php which actually sets up an array of types to attach to the form view which it uses to prioritise twig block rendering: (lines 99 to 105)

    // add a new block types, so the Admin Form element can be tweaked based on the admin code
            $types    = $view->getVar('types');
            $baseName = str_replace('.', '_', $sonataAdmin['field_description']->getAdmin()->getCode());
            $baseType = $types[count($types) - 1];
    
            $types[] = sprintf('%s_%s', $baseName, $baseType);
            $types[] = sprintf('%s_%s_%s', $baseName, $sonataAdmin['field_description']->getName(), $baseType);
    

    Therefore all I had to do was define a block called mycompany_admin_content_galleries_sonata_type_collection_widget or mycompany_admin_content_galleries_slides_sonata_type_collection_widget and it only applies to this admin form 🙂

    To complete this solution in my Admin class I added this function:

    public function getFormTheme()
    {
        return array_merge(
            parent::getFormTheme(),
            array('MyBundle:Gallery:admin.slides.html.twig')
        );
    }
    

    and I created MyBundle/Resources/views/Gallery/admin.slides.html.twig, containing the following:

    {% use 'SonataAdminBundle:Form:form_admin_fields.html.twig' %} // I think this 
                 line is not really needed as the base admin's form theme uses this file
    
    {% block my_bundle_content_pages_slides_sonata_type_collection_widget %}
    
        // copied and edited the contents of Sonata/DoctrineORMAdminBundle/Resources/views/CRUD/edit_orm_one_to_many.html.twig
    
    {% endblock %}
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Is it possible to override the type resolution using JSON.NET based on a property
is it possible to override an editor template? I have DateTime fields in my
Is it possible to override the GetHashCode method for a string, int, int32 etc..
Is it possible to override reflection functionality ?
Is it possible to override a generisized function as illustrated in the code snippet
Is it possible to override the standard layouts that are provided with Android? Is
Is it possible to override system property (timezone etc.) in Java using predefined properties
How is it possible to override styles specified in another style sheet? I do
It doesn't seem to possible to override a plugin execution's goal definition. Let say
I have some console.log commands spread through my site. Is it possible to override

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.