SonataAdminBundle is a Symfony2 bundle to generate robust user friendly administration interfaces.
0
votes
0answers
11 views
Sonata Admin Change Edit link by Show link
I'm using SonataAdminBundle and I'm triying to change the edit link of and entity by the show link.
I want to do this because I need the entity couldn't be modified but I want you can show the ...
0
votes
2answers
22 views
You can avoid this error by setting the “data_class” when use sonata_media_type
I installed Sonata Admin and after install Sonata Media
i have class admin for "colors" and set in configureFormFields
->add('image', 'sonata_media_type', array('required' => false,
...
0
votes
1answer
7 views
SonataDoctrineORMAdmin sort / order one to many / many to many relation in show page
I found there is a way to modify the order of a list of entities like proxyquery, createquery overrinding, sort option...
But I can't find a way to modify the way X entity/ies to many Y entities are ...
0
votes
0answers
22 views
Sonata ORM Admin : ternary relation
I'm using SonataDoctrineORMAdmin, and I would like to know if it's possible to handle ternary relation.
I have 3 entities : translator, site & language, which are all linked one to many to the ...
0
votes
1answer
24 views
How to create list field type in sonata admin
I'm using Symfony 2.3 and newest SonataAdminBundle. It's possible to create editable fields in list view with SonataAdminBundle? What is the best practice?
0
votes
0answers
21 views
Sonata Media Bundle : acces media url
I use the sonata media bundle.
I wonder how I can access the media url in twig.
I just want the url, I do not want to show the media.
Any suggestions?
1
vote
1answer
17 views
Add preview image in form sonata admin of symfony
I'm try to add a preview of a image field in edit form:
/**
* @ORM\Column(name="firma",type="string", length=500,nullable=true)
*/
private $image;
and de Profile:
public function ...
0
votes
0answers
31 views
SonataMedia upload doesn't work on Amazon S3
I installed SonataMediaBundle and it works fine when I want to upload my files locally.
But i would like upload my files on Amazon S3. So :
i updated my config file
i added the bundle ...
1
vote
0answers
33 views
Sonata User Admin - Custom field dependency
I have extended the SonataAdmin class for FOSUser and added 2 custom fields (choice type from external data source): Company and Sector
I'd like to make Sector dependent on Company, so if the user ...
0
votes
0answers
60 views
SonataAdminBundle without intl extension
I'm having problems with SonataAdminBundle when editing or creating:
The Symfony\Component\Locale\Stub\StubNumberFormatter::getSymbol() is
not implemented. Please install the 'intl' extension ...
0
votes
1answer
89 views
Symfony2 and composer issue: “Could not parse version constraint composer.phar…”
So I'm having issues trying to get composer to work again after installing the Sonata Admin Bundle on Symfony2. When using the command php composer.phar ...., I get the following error message: ...
0
votes
0answers
43 views
Not working orphanRemoval (OneToMany) in Doctrine Sonata
Not working orphanRemoval (OneToMany) in Doctrine (I try 2.2 and 2.3). The element from target entity trying to deleted but still available. I get not any error, just not deleted.
Configuration ...
2
votes
1answer
65 views
How can I use same column twice?
I have table which has two date time format.
fromDate (e.g) 2013-05-20 13:00:00
toDate (e.g) 2013-05-20 15:00:00
I want to show data such as
date |from |to
2013/5/20 |13:00|15:00
So I ...
0
votes
0answers
53 views
SonataAdminBundle and error bubbling for sonata_type_collection
After three days of work my backend is nearly complete, but there is an issue with SonataAdminBundle
my admin class looks like
[...]
protected function configureFormFields(FormMapper $formMapper) {
...
0
votes
0answers
48 views
Can't add custom template to sonata_type_model many_to_many
Can't add custom template to sonata_type_model many_to_many relation.
I want to override standart template edit_orm_many_to_many.html.twig
Wrote something like this:
->add('forms', ...
0
votes
0answers
63 views
Symfony form checkbox label translate
I am using Sonata Admin + Sonata ORM + Sonata User for editing users. When editing a user there are several checkboxes. Each checkbox has two labels (one before the checkbox and another one after the ...
0
votes
0answers
61 views
Sonata Admin Bundle remove routeCollection roles
I'm using Sonata Admin Bundle and I'm having some troubles with the function:
function configureRoutes(RouteCollection $collection){ }
The function works correctly if I write a simple:
...
1
vote
0answers
54 views
Sonata Admin User - ACL Setup
Trying to use the ACL mode for Sonata Admin.
From the docs I understand that STAFF should have ["EDIT","LIST","CREATE"] permissions
But when I install the ACL mappings:
$ php app/console ...
1
vote
1answer
26 views
How to not to use english label for month name?
I am showing timedate select box by this code
public function configureFormFields(FormMapper $formMapper)
{
$formMapper
->with('General')
->add('toDate',null,array( ...
3
votes
1answer
68 views
Format for time display?
I am making application with symfony2 and sonata-admin bundle.
public function configureListFields(ListMapper $listMapper)
{
$listMapper
->addIdentifier('id')
...
0
votes
0answers
99 views
Symfony2 Sonata admin integrity in form view - create and edit actions
I have two entities and one association entity:
// Product.orm.yml
MyCompany\MyBundle\Entity\Product:
type: entity
oneToMany:
product_category:
targetEntity: ...
2
votes
2answers
105 views
Symfony2 - Give a default filter in a list of elements of Sonata Admin
I have a list of elements of type Vehicle and I show these elements with Sonata Admin. I allow to filter these elements by the "status" field, but I want that, when the list is showed, only the active ...
0
votes
1answer
39 views
How to select the items in form helper
I want to know how to use form helper deeply
Given, there is a table like this
ID |student |sex
1 | bob | 2
2 | kayo | 1
3 | ken | 2
protected function configureFormFields(FormMapper ...
0
votes
0answers
46 views
Sonata admin and Custom Security handler
I wanna write a custom Security handler and this will be a simple ACL which restrict data by user id. I don't want use a standart ACL, no need to use all functional and create aditional database with ...
0
votes
1answer
68 views
Get old data in preUpdate Sonata Admin Bundle
I have a product entity and it has an images field that store the images names from the product but the images names depends of a part_number field that is unique, so if the user make a mistake in the ...
0
votes
0answers
32 views
SonataAdminBundle FOSUSerBundle integration issues
i'm using Symfony2.1.2 version. I'm using Ok the SonataAdminBundle. On the other hand I'm using Ok the FOSUserBundle. I've followed the documentation for the integration of those, putting the ...
0
votes
0answers
32 views
Sonata Admin filter by method of entity
I use Symfony 2.0.9, I have a entity with:
+ date_start
+ date_finish
+ getAavailable()
that return true if right now is in the middle of date_start and date_finish.
In configureListField() I ...
0
votes
0answers
52 views
Filter for group on SonataAdmin
I made user table with SonataAdminBundle and FOSUserBundle
What I want to do is making filter for 'group'
add form in configureFormFields.
in Acme/AdminBundle/UserAdmin.php
protected function ...
3
votes
1answer
103 views
Symfony2 Admingenerator vs. Sonata admin
Just found out about this new project Symfony2 Admin Generator. It is for easy development of backends for symfony2 based applications.
I was wondering, how this tool is different from Sonata admin ...
0
votes
0answers
87 views
Customizing Sonata Admin's form/entity edit page
My entity deals with YouTube videos and their author's location. They're stored as direct URLs (e.g. http://youtube.com/?v=123qwe). Two other values are trimin and trimout (in seconds, the location ...
0
votes
2answers
116 views
How to use group
I use FOSUserBundle and 'group' function
At first in my User.php
There were such getter and setter
/**
* Add groups
*
* @param \Acme\UserBundle\Entity\Group $groups
* @return User
*/
public ...
1
vote
3answers
152 views
SonataAdminBundle : display non crud (statistics)
I'm using sonata admin bundle to generate my backend, I'm so happy with it that I would like to use my backend to display statistics as well.
I guess I can do that by tweaking bundle's views, ...
0
votes
0answers
41 views
Symfony2 - Showing dynamic selectable roles
I'm using Symfony2 with Sonata.
I have a list of sections on my application to which I'd like to give access to my users.
Example:
John should have access to section1 and section3
Bob should have ...
0
votes
2answers
130 views
Problems showing fields with Sonata Admin - Symfony 2.0
I want to show some fields of an object with SonataAdmin. One of these fields is an integer (status) in the database, but I don't want to show the integer, else a specific string depending on the ...
1
vote
2answers
227 views
Sonata Admin Bundle dashboard filter entity from role and DDBB permissions
I am using the SonataAdminBundle with FosUserBundle. I have a bit of problems in my dashboard.
In my application, I have resources, companies and users. An user belongs to a company, and can create ...
0
votes
0answers
101 views
Sonata Admin Bundle filter show entity from role user
I'm trying to develop a dashboard with the SonataAdminBundle, which displays some entities depending on the role of the user.
For instance, if the connected user has the ROLE_SUPER_ADMIN, all ...
0
votes
1answer
84 views
Don't show list during first load in sonata admin bundle in Symfony 2.1
I'm using Symfony 2.1 and Sonata Admin bundle for admin functionality.Now I have lot of data to show in list view which I don't prefer to do by default.I want to display only filters first time and ...
0
votes
0answers
312 views
how to Integrates the FOSUserBundle with the SonataAdminBundle in symfony2.2?
I try to Integrates the FOSUserBundle with the SonataAdminBundle in symfony2.2 by sonatauserbundle,but want i open this url http://dev.test.com/app_dev.php/register it says
"No mapping found for ...
1
vote
1answer
122 views
Symfony 2 (Sonata admin) nested entities
I am using the Sonata Admin bundle, but there is a problem. I'm using this code
$formMapper
->add('shares', 'sonata_type_collection',
array('by_reference' => false, 'label' => ...
0
votes
0answers
18 views
SonataAdminBundle set NULL $formMapper
how to set field NULL if nothing was writen in the input ?
I would like to have a checkbox to NULLIFY the field. (even if the field is blank, need NULL in mysql field)
0
votes
0answers
108 views
Sonata admin overwritten user class
I have extended SonataUserBundle using SonataEasyExtendsBundle and removed some of the fields.
The database table is created correctly. The problem is when trying to add an user in the Admin interface ...
0
votes
1answer
260 views
In symfony2 with sonata: How to pass a variable to the template defined for a given field of the listmapper in the method configureListFields?
Using Symfony2 with Sonata, in a list, fields templates can be overwritten and assigning variables to templates, i.e setTemplateVar(), can sometimes be useful! (not talking about form where 'attr' ...
0
votes
1answer
192 views
Symfony2 1:M / 1:1 Relationship and Sonata Admin Form
I've hitting my head against the wall for countless hours now and I hope SO can be of help!
I have Retailer, Branch and RetailerBranches entities which work just fine, retailers can have many ...
0
votes
1answer
189 views
Symfony2 SonataAdminBundle Google Chrome ERR_RESPONSE_HEADERS_TOO_BIG
Using Syfony 2.2 in dev environment, trying to display a list view of the SonataAdminBundle.
I'm getting Error 325 / ERR_RESPONSE_HEADERS_TOO_BIG in Google Chrome. No problems in Safari and Firefox. ...
1
vote
1answer
92 views
How to create dynamics forms fields based on another form field in sonata admin?
How can i update the content of a specific form field inside an admin interface from Sonata Admin based on another form field ?
An example : i have an entity Contract ManyToOne Client, Users ...
0
votes
1answer
144 views
Sonata Admin type_collection & cascade validation
I am having a problem with implementing the one to many relationship in the sonata admin with the following structure.
->add('adhesions', 'sonata_type_collection', array('by_reference' => ...
0
votes
1answer
287 views
Labels in Sonata Admin Bundle
I have started new with the sonata admin bundle. its very handy and easy to setup and use , but i can't seem to get the translation fixed for the default labels
e.g link_add, link_list are coming ...
0
votes
1answer
74 views
SonataAdminBundle - how to customize admin navbar
I have installed symfony 2.2 and SonataAdminBundle. NavBar for products is looking like this :
Dashboard / Product List /{companyName}{bundleName}\Entity\Product:0000000012fbfd4c00000000c6c10493
And ...
1
vote
1answer
234 views
unserialize error after emptying cache with Symfony and minimum-stability : dev
I've got an error when I clear manualy the Symfony cache after installing the SonataAdminBundle in Symfony 2.1.8 (but I've the same error with the 2.2 or 2.1)
First, I've installed Symfony :
php ...
1
vote
0answers
258 views
How to integrate sonata admin bundle with a twitter bootstrap layout
I have installed Symfony 2.2 with the SonataAdminBundle and I have a layout which supports twitter bootstrap. Now I'd like to integrate this layout into my sonata admin.
I have found this code, but I ...

