Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 4 years ago.
Improve this question
A need this https://www.github.com/joni2back/angular-filemanager to my project with yii2.
Does anyone know if there is a extension with these features?
Or how can I adapt this features to Yii2?
Thank you
I always use Yii2 Elfinder file manager. It works pretty well.
I recommend Yii2 ElFinder
You will need to create your own backend connector / bridge.
Then extend the config to set the service urls for each action.
Create the service following this api docs https://github.com/joni2back/angular-filemanager/blob/master/API.md
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
Improve this question
I have been developing a web site that is kind of an online store and my user needs to access to control the products, stock and other things like that and having a basic CRUD of some of my Models, so I want to install something like GroceryCRUD (called ImageCRUD for Laravel), but the versión in its documentaion needs Laravel 4.2 and I am developing with the most recent version of it (5.4).
In few words, my question is... Is there something like GroceryCRUD for Laravel in this version?.
There's some package that you can install for example :
Read this for more information
https://laravel-news.com/13-laravel-admin-panel-generators
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 6 years ago.
Improve this question
I am thinking on using SilverStripe as a CMS for a website I'm coding. I want to use ReactJS for the theme of the frontend's UI. I can't find any information on this except from this, but that only states that they are integrating it and nothing else. Have also looked into this but that's a backend UI extension.
Has anybody tried it out?
SilverStripe makes no assumptions or impositions on what you do with your frontend. You're free to use any framework and/or toolchain you like. For some good examples of React/Webpack with in a SilverStripe theme, check out:
https://github.com/stevie-mayhew/silverstripe-redux-example
Or for just a basic webpack workflow:
https://github.com/unclecheese/silverstripe-webpack-starter
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 6 years ago.
Improve this question
What is the best library in Laravel 5.1 for generating PDF with style and image?. I have used dompdf once. Although it works on localhost without style and image, But it does not work on live server.
Anyone please share your experience about generating PDF with style and image in Laravel 5.1 .
Have you not tried Snappy Check it out Here
Yes you can generate pdf by using dompdf package. but make sure all css should inline or onpage.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question
Silverstripe has an awesome framework has anybody found any tutorials or examples how to take the framework and make own admin or CMS of your own?
Just don't install the CMS. Setup your routes (routes.yml), controllers (RootURLController and others) and templates (RootURLController.ss etc...), and you're done. The Framework actually comes with the admin side, which you can use for Member/Security management, and ModelAdmin!
http://doc.silverstripe.org/en/developer_guides/controllers/routing/
http://doc.silverstripe.org/en/developer_guides/controllers/introduction/
http://doc.silverstripe.org/en/developer_guides/templates/rendering_templates/
http://doc.silverstripe.org/en/developer_guides/customising_the_admin_interface/modeladmin/
It's not that different. Just remove the cms folder and do your things with the controller.
http://doc.silverstripe.org/en/developer_guides/controllers/introduction/
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question
I'm using Laravel PHP framework, and like everyone else I have language files that are actually php files with a big array in them.
Does someone know a friendly way of getting these files to translators?
Is there an editor or some service maybe?
What google proposed:
https://github.com/barryvdh/laravel-translation-manager
It can import PHP translation files and has a neat interface for easy editing of translations.
Simply install the package through composer, and translate away!
Another webapp: http://zanata.org/help/translation/translating/
A nice desktop app: http://poedit.net/
Kind regards,
Benedikt