i want to implement a social share functionality in sonata admin bundle Symfony2. Whenever a editor created an article and published it that will automatically share on facebook or twitter.
Just want to know that is any bundle available which has social share functionality???
Last option
if bundle is not available then i have to made my own bundle
There is no social network API implementation in the Sonata suite at the moment, beside referencing through the SonataSeoBundle (http://sonata-project.org/bundles/seo/master/doc/reference/installation.html).
We are interested in adding this feature in the Sonata bundles, feel free to discuss it with us by creating an issue on github.
Only for Sonata Admin No. specific bundle.
You can try this in your back-end :
Facebook Bundle
Twitter Bundle
Or
try this Bundle :
https://github.com/hwi/HWIOAuthBundle
Maybe this is helpful to you.
There is here an article, maybe it helps: http://obtao.com/blog/2012/11/create-a-social-buttons-bar-for-facebook-twitter-and-google-with-symfony2/
Related
I am new to Symfony and Sylius, and I have installed Sylius which is installed as a symfony "vendor" bundle by default.
I have moved the route to Sylius (which is accessible by default at "/") to "/shop", and I will developp myself the home page and other pages (not related to the shop, like information pages, etc.)
But, I need authentication in these other pages to manage user accounts (with data not related to the shop).
What I would like is a shared authentication system, but I don't know if it is possible to use Sylius' one and how to do this.
Thanks for you help !
Jon
THis is related to Symfony, you will need to override security in way to share context - your app and Sylius. Then some parts of Sylius will be locked as now.
http://symfony.com/doc/current/security.html
What I have made is route my Bundle under "/admin/blog". As my route is under /admin, I have to authenticate with the Sylius authentication, and it Seems to work well ! :-)
I was wondering if there was any newsletter bundle existing to add to a Sylius (Symfony3) app ? I searched on the net, but only found Symfony2 bundles.
Thanks for your help !
There is no official NewsletterBundle for Sylius. You can try using the Symfony2 solutions, but not guaranteed they will work.
You can of course use SyliusCmsBundle and adjust it to newsletter purposes.
I want to add ecommerce function to an existing LMS project on top of symfony2. I checked elcodi and sylius. Both seem very complicate and lack good documentation on how to integrate into an existing project. I need only order, payment, maybe cart. Anyone can recommend an ecommerce bundle that fit my need? Thanks!
Try This, Symfony e-commerce bundle and shop components
https://github.com/aimeos/aimeos-symfony
i'm little confused..
I'm using sonata admin bundle in my project and i'd like to install user management for this, tell me please do i really have to install sonata user bundle? (i was using this tutorial http://domitable.com/content/getting-started-symfony-23-sonata-admin-user-bundles ) or only fos user bundle will be enought? i'm asking this becouse i want to install as little dependiendes as possible.
honestly the best way for me would be to use only my custom user bundle with custom user entity..(if need be only my class + FOS)
Do i have to use easy-extends to generate my user entity class or default doctrine generate entity is okay?
What about sonata ACL in this sitaution?
what is the best way to resolve this issue?
I'll try my best with what I have. Basically, SonataUserBundle is only useful if you want to manage the users via SonataAdmin.
FosUserBundle is simply a bundle that manages users and some actions such as login, but from the point of view of a user. That is, it does not have the tools built in for an admin to manage users.
Therefore, to manage the users, you need SonataAdmin and SonataUser.
If you easy extends SonataUser, then you could transfer your custom entity in the extended bundle. That is a way you could do it.
ACL is a complete different thing, read here for more information:http://symfony.com/fr/doc/current/cookbook/security/acl.html
I am working on a Symfony 2.3 application which uses Sonata Admin Bundle for it's backend. Is there any ready to use bundles that provides integration with any modern JS autocompleted tag library (tags libraries examples) and Sonata Admin Bundle?
You can try to use GenemuFormBundle
This bundle provides extra form : Captcha GD, Tinymce, Recaptcha, JQueryDate, JQueryAutocomplete, JQuerySlider, JQueryFile, JQueryImage
You should use genemu_jqueryselect2_choice, see this demo page
Hope this helps