The goal of the Sonata Project is to provide an e-commerce framework solution based on the Symfony2 framework.
1
vote
1answer
16 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
98 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: ...
0
votes
0answers
22 views
SonataMediaBundle wrong parameter context while editing gallery
In object form gallery field is added by
$formMapper->add('gallery', 'sonata_type_model_list',
array('required' => false),
array('link_parameters' => ...
0
votes
1answer
59 views
Render dynamic block name with Sonata Block Bundle
Does anyone know how to render a dynamically generated block name using the Sonata Block Bundle? An example of what I am trying to achieve is:
page.html.twig:
<div class="content">
{{ ...
0
votes
0answers
60 views
Symfony 2 - Sonata Admin Role based security
With Sonata, I'm trying to use the role based security.
I want to give a group, rights for listing, editing & creating users, so I created a role with
ROLE_MANAGE_USERS:
- ...
0
votes
0answers
24 views
Using SonataPageBundle with the layout from the Mopabootstrap bundle
I've got a Symfony2 application that uses the MopaBootstrapBundle and I would like to use the SonataPageBundle to provide CMS functionality, however I've not been able to come across any examples for ...
0
votes
0answers
311 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
83 views
SonataMediaBundle - Using twig helper to render image
I'm following this documentation and I'm trying to figure out what other parameter values can the media helper take to render images.
{% media media, 'small' %}
In the above example, the media tag ...
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
1answer
257 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
191 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 ...
-1
votes
3answers
417 views
Extending Sonata User Bundle and adding new fields [closed]
I am extending the Sonata User Bundle and creating some extra fields in the new user entity. These fields will only be updated within the Sonata admin area under users so they do not need to be ...
0
votes
0answers
92 views
Sonata Media: The file could not be found
I'm trying to attach an image to an Entity but when I submit the form, an error is displayed saying: The file could not be found.
Here is my code to build the form:
$builder->add('email', ...
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 ...
0
votes
0answers
18 views
Sonata ListManager Collection
I have to built a buil a sonate powered list in order to find some customer. I have to display the customer's address. But in some edge case due to my business case, a customer may have 2 adresses. ...
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 ...
0
votes
2answers
113 views
The function “is_granted” does not exist in SonataAdminBundle symfony2 cmf
after installing Symfony2 cmf
http://symfony.com/doc/master/cmf/getting-started/installing-symfony-cmf.html
when I tried to view has admin / dashboard I have the following error
The function ...
0
votes
1answer
47 views
SonataDoctrineORM - Model extends
I'm using Sonata with SonataAdmin & SonataOrm as told in several tutorials.
I simply would like to remove some default method of DoctrineOrmBundle- ModelManager.php
I tried to override the ...
0
votes
0answers
222 views
How to extend the sonata page bundle entity manager classes
I wanted to make some changes in SnapshotManager.class.php. I have tried extending this class in my ApplicationSonataPageBundle. But always I am getting the following error
Catchable Fatal Error: ...
0
votes
0answers
97 views
Override Sonata Page Bundle
I am trying to override SonataPageBundle forms such that I want to set a default value for snapshot publication end date. I tried to override using services but it's not working. Here is the ...
0
votes
1answer
112 views
How to install SonataIntlBundle with composer?
I read the documentation but when I do this :
php composer.phar require sonata-project/intl-bundle
I have this message in my console :5
Please provide a version constraint for the ...
3
votes
0answers
184 views
Dynamic relationship and the SonataAdminBundle
I use the SonataAdminBundle for the first time in my life and I have some
problems with it.
At first, I had a PageBundle which has a Page and a Author entity. Then I
started using SonataAdminBundle ...
0
votes
1answer
53 views
SonataAdmin : how to manage roles?
how to manage roles in sonataAdmin ?
i want to add new roles in the admin, and use it.
how to display dashboard tables depends on users roles ?
Exemple: want to display only some groups tables if ...
0
votes
1answer
101 views
How to extends Sonata\DoctrineORMAdminBundle\Model\ModelManager
I want some changes in ModelMangaer then I was extending ModelManager but It's not working. I don't know why ?
Any one tell me why it is not working?
File where I extend ...
0
votes
0answers
58 views
How to add other file extensions to SonataMediaBundle?
I need to upload other file types like (.ttf) but i can not.
Now, i'm editing the default source file configuration.php in DependencyInjection. I no it's the worst solution, but i don't know how ...
0
votes
0answers
122 views
Symfony 2 FOSUserBundle/SonataAdminBundle Security issue
I've got a problem with FOSUserBundle and SonataAdminBundle.
I think I've setup everythinhg properly using the Bundles and created a superadmin user on the console. When I create a new user using the ...
0
votes
0answers
27 views
Translate SonataNewsBundle entities
I installed SonataNewsBundle and I need to translate its entities in database.
I looked in a lots of forum but no answer for this question.
Have you any idea how to do that ?
I'm using ...
3
votes
1answer
84 views
Organise files in SonataAdminBundle: what goes where?
I have regrouped the following information from a few examples in the SonataAdminBundle documentation. Please correct me if there are some errors, but here is what I get in the case of a BlogBundle:
...
2
votes
1answer
496 views
Sonata Admin Bundle: DatePicker range
How would I create a doctrine_orm_datetime_range filter in the Sonata Admin Bundle which uses the jQuery UI datepicker?
I tried the following, but it doesn't work:
protected function ...
0
votes
0answers
42 views
MediaBundle one field for many providers
I have an upload field, that can be used with many providers. For example "document" context, that can be image, pdf, doc, etc. In configuration it uses two providers 'file' and 'image'. But in field ...
0
votes
1answer
72 views
FOSUserBundle 2.0.0: Unrecognized options “handler”
I have update my FOSUserBundle and now I'm getting an error which described in the question title. I found this question and now I understand why it happens. I want to revert back to 1.3.x version of ...
0
votes
1answer
374 views
SonataUserBundle override form edit profile
How to override the SonataUserBundle form edit profile ?
Here the code
config.yml
# fos User
fos_user:
db_driver: orm
firewall_name: main
user_class: ...
0
votes
2answers
189 views
SonataUserBundle override model
How to delete unwanted fileds in the entity/model: facebook, twitter, bio, website from the Model/User.php ?
I try to ovveride the Model but it doesn't work.
I succed to override the entity, i added ...
1
vote
1answer
280 views
Symfony2 Sonata-project admin bundle - how to list custom data instead of orm entity
Sonata Admin Bundle provides CRUD, filtering, sorting, pagination etc.
I need to show some customized and processed data queried from few tables as an admin panel page. What would be the best way to ...
0
votes
1answer
83 views
overridden SonataUserBundle not working properly
i had install SontaUserBundle i follow the document n i created
now what i want to add oneToMany relationship inside user class
/**
* Application\Sonata\UserBundle\Entity\User;
* ...
1
vote
2answers
545 views
How to use the SonataAdminBundle
I'm new to Symfony and I'm trying to create a database interface using Sonata and Doctrine ORM. At first, I`ve read this tutorial and after a few days it all start working on my VirtualBox machine ...
0
votes
1answer
288 views
Symfony2 Forms Generated with CRUD - Can I automatically use Sonata Admin with the existing forms?
I have forms generated with generate:doctrine:crud, they work perfectly, but do not look very nice.
While looking for something different I found Sonata Admin module.
It is really cool with different ...
1
vote
1answer
174 views
Annotations in extended Sonata user class not being read
I extended the user bundle from the Sonata project with Sonata EasyExtends bundle.
It is placed under src/Application/Sonata/UserBundle by default
Now I want to customize the extended class and add ...
0
votes
1answer
82 views
Provide a parameter for a custom template in SonataAdmin fields
I know how to set a custom template for a field in SonataAdminBundle. The following topic answer a question about that:
Symfony SonataAdmin Templates
But, how can I pass a parameter to use in that ...
0
votes
0answers
187 views
Using SonataUserBundle with extended FOSUserBundle
Okay, this is my second question about the SonataUserBundle. The first one was realy stupid, because I just couldn't find a documentation (I really didn't find it where I expected it is placed). But ...
1
vote
1answer
1k views
sonata_type_model / symfony form one to many relationship not saving
I have a one to many relationship between accounts and users. I am using sonata admin for CRUD. As I know, it uses Symfony forms to get the job done. I tried to add a field like this:
...
2
votes
1answer
580 views
Route “admin/login” does not exist Error Symfony2 + SonataAdminBundle
I followed a tutorial to set up SonataAdmin and FosUer
FosUser seems okay for the connection and the disconnection
However for Sonata I can't access to
>my_host/web/app_dev.php/admin/dashboard
...
1
vote
1answer
524 views
How to define/pass the entity manager for sonata-admin
I followed this tutorial to install SonataAdmin with FOSUserBundle.
Now i keep getting this Error Message:
No entity manager defined for class Application\Sonata\UserBundle\Entity\User
But how do i ...
0
votes
2answers
295 views
Unable to register extension “sandbox” as extensions have already been initialized
I have a problem installing Sonata project demo. After following this...
I get the following problem:
Unable to register extension "sandbox" as extensions have already been initialized.
in ...
2
votes
1answer
1k views
Sonata Admin one-to-many relationship with file upload (appendFormFieldElement)
I'm currently facing a challenge with SonataAdminBundle, one-to-many relationships and file uploads. I have an Entity called Client and one called ExchangeFile. One Client can have several ...
0
votes
1answer
59 views
How to resize columns and center content in sonata admin bundle
How to resize columns and center content in sonata admin bundle?
3
votes
0answers
392 views
Symfony2.1 SonataUserBundle ResourceBundle error
I have this problem with Symfony.
I now use SonataUserBundle and I have this error:
The locale resource bundle could not be loaded for locale "en"
(uncaught exception) at
...
2
votes
1answer
849 views
How to get underlying object in Sonata's Admin class when called by sonata_type_admin?
So, in edit action of Sonata Admin I'm trying to display different form fields depending on create or edit context.
Maybe some background first..
I have a Gallery entity and a CoverPhoto entity ...
0
votes
1answer
63 views
SonataAdminBundle & Password Encoding
I am using Symfony2.1.x and SonataAdminBundle w/ FOSUserBundle.
I have a new entity that includes a password field. When adding a new entry via admin panel, how do I encode the password?
Also, on ...
0
votes
0answers
119 views
SonataMediaBundle Generate Media in Controller
I want to generate my media from my controller
this is what I do for now :
$this->get('sonata.media.provider.image')->generatePublicUrl($media, 'format_small');
but I don't find a way to ...



