SonataAdminBundle is a Symfony2 bundle to generate robust user friendly administration interfaces.
0
votes
0answers
8 views
Flash message and redirect from Sonata Admin class
Can't understand how show flash and make redirect before persist in Sonata Admin Bundle.
I wrote something like this, but the Entity still storage and my flash not appear and redirect not working.
...
1
vote
1answer
8 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
21 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
22 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
34 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
63 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
33 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
60 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
35 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
42 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
60 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
54 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
46 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
25 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
61 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
82 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
97 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
38 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
38 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
58 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
29 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
50 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
86 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
71 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
98 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
140 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
39 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
104 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
207 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
95 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
82 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
277 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 ...
0
votes
1answer
108 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
16 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
99 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
221 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
172 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
184 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
84 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
136 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
257 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
70 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
222 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
248 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 ...
2
votes
1answer
140 views
SonataAdminBundle - How to change route to dashboard?
I have installed Symfony 2.2.0 with SonataAdminBundle. Now I'd like to change default dashboard route from /dashboard to /.
How to do it in a right way?
0
votes
0answers
67 views
SonataAdminBundle and ACL Class-scope Permissions
Sorry for my english...
In my project I use ACL with SonataAdminBundle, but I can not understand why they did so, you need to have to create a record in the database, even when I want to use only ...
0
votes
1answer
85 views
SonataMediaBundle and S3 integration
I am trying to use SonataMediaBundle to upload images to S3. Is there any example I can refer to for this integration?
Here's what I did so far:
create a bucket on S3
update config.yml with ...
2
votes
2answers
689 views
Upgrading Symfony2 and SonataAdminBundle (Mar 01, 2013) after last update
After last update SonataAdminBundle (Mar 01, 2013) I can not update components using composer
composer.json
...
"require": {
"php": ">=5.3.3",
"symfony/symfony": "2.1.*",
...
0
votes
1answer
213 views
assert unique validation in sonata admin
I'm using Symfony 2.1 for a project. I use SonataAdminBundle for administration usage.
i want to add an assert to my slug property in my admin class.. how can i do this?
in my entity i had set the ...
