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
Can anyone point me towards a good tutorial/documentation on writing symfony plugins?
I'm trying to write a plugin for paypal using doctrine and sf 1.4.
Thanks
The Jobeet tutorial has a section of turning the Jobeet application into a plugin which is very good.
http://www.symfony-project.org/jobeet/1_4/Doctrine/en/20
There already exists a couple of plugins PayPal integration but I think most of them are for 1.0/1.2 and were never fully completed. Might be worth taking a look at them on the Symfony site.
And there's this: http://www.symfony-project.org/plugins/FAQ
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 3 years ago.
Improve this question
Does Laravel have any package to integrate Payfort payment gateway? I want to integrate payout/checkout in my Laravel project. I got the reference code but don't know which package will be helpful? For that I have first installed wshurafa/laravel-payfort package but it was not going to import certain models which are mentioned in the reference code and that models are, Start, Start_Charge etc. I have also tried another package called conceptlz/payfort but it also not satisfied my above given reference link's code.
you can use this library
composer require conceptlz/payfort
here is the link for detailed documentation
https://packagist.org/packages/conceptlz/payfort
Conceptlz/Payfort
is good and do the job. I'm using it in my applications when it needed.
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 7 years ago.
Improve this question
I am wondering if you know any source where we can find premade functions in PHP ?
A sort of open-source repository where functions are tested and created taking in mind security and best practices. For example : generating mails, field escape functions, login, register, ... the classic stuff.
There are MANY such packages available at https://packagist.org/. You autoload these into your PHP app using Composer, available at https://getcomposer.org/. This is the newest, bestest way to developer PHP apps. Don't re-invent the wheel; use some of the great code available here.
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 7 years ago.
Improve this question
guys
Do you know any available PHP third party application or script which allows all my registered members to share their files to other members?
I'm thinking similar with this one (My concern on that are there is no support doc and it seems the author of the script is gone for a long time.)
http://codecanyon.net/item/really-simple-file-sharing-web-application/51228
Really appreciated to your help! Thanks
Opendocman checkout this open source application. Hope this helps you.
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/