Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 6 years ago.
Improve this question
I'm new in symfony. I came from codeigniter. I'm trying to study symfony but I'm confuse about using the model. Unlike codeigniter, there is a model folder added when I download it. How can add model in symfony? I try to search it to google and I found this link. I don't know if this is the right one.
I'm only partially familiar with codeigniter. My guess is Doctrine would be similar to the model.
That link you show is a really old version, don't use it at all.
Here's the latest link to the Doctrine documentation:
https://symfony.com/doc/current/doctrine.html
Also, you can click on the "Documentation" link menu for other useful "latest" documentation.
Related
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 6 years ago.
Improve this question
I have been looking all over the internet for different ways to implement multi-level. My issue is I want admin users to be able to sign specific permissions to users. For example
User 1: Manage Docs , View Images ...
User 2: Manage Docs , Delete and View Images.
I was thinking of using a table called user permissions. And create a link between the user and the permissions. Just how would I check against this table. I do not have any code as of yet as I am trying to understand how this could be implemented.
There is an library for laravel called Sentry, it helps you out to handle user's permissions as you're describing through a JSON.
Here is how to implement it in Laravel 5.
Here Documentation of library
Hope this helps!
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 6 years ago.
Improve this question
I am new to the Laravel5 framework , so that I have no idea about this.I want to fetch data from a website and store that in my database.can anyone provide a sample coding that will come under model , view , controller and route, so that I can understand it in better way.
everything except something's come under model controller view and routes.
start from the Tutorials docs and continue to The Basics
navigate in the left navigation from top to bottom
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 9 years ago.
Improve this question
How to do SOLR autocomplete search box with codeigniter?
Please tell me any one
Thanks in advance
This link have tutorial and code to implement SOLR in Codeigniter. Then you have to do auto-complete yourself with help of ajax and jquery.
http://mayeul.com/apache-solr-with-codeigniter/
Edit:
Unfortunately above link was broken.
I found something new but not for codeigniter. This github link have whole source code and you can create CI library or helper from this package.
https://github.com/basdenooijer/solarium
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
In My Web app I have a CRUD table and I need to implement a dialogue ox on clicking a particular record for editing ,deleting and making other changes. I googled it but unable to find proper tutorials.
Any body kindly help me how should I proceed. How should I implement it? I know its a silly question but unable to find out.
I recommend checking out the x-editable extension for Yii, which will help you implement the features I believe you're looking for.
I find the YiiBooster extension very useful. It contains the same features as x-editable and much more.
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 9 years ago.
Improve this question
I want to edit entries dynamically, as in: say I am the admin and I see an error in this post I can click edit and then Edit the text. Is this possible using php/symfony2/doctrine? or should I just go with Ajax/jQuery?
If by dinamycally you mean "in the page where I am without reloading the full page" => then it has to see first with Ajax and so maybe JQuery (or any other JS Framework you enjoy). Behind this may stand symfony2 with Doctrine2 or whatever you want for your logic.
I can add that Symfony2 + the Doctrine2 Bundle provides default commands to generate CRUD on your entities (can be seen here)