Re: [web2py] Re: module vs plugin

2015-07-17 Thread Fabiano Almeida
Thanks Vikash! 2015-07-15 14:15 GMT-03:00 Vikash Sharma vikash0...@gmail.com: Module defines grouping logic at one place, the way you want to design it. Example, all customer database, order details, vendor details and respective operation are organised implemented separately. Read more

Re: [web2py] Re: module vs plugin

2015-07-15 Thread Fabiano Almeida
Hi Anthony, I think add plugins to build a system. Eg customer registration, product registration, shopping trolley, service order, reports, etc. thks Fabiano. -- Resources: - http://web2py.com - http://web2py.com/book (Documentation) - http://github.com/web2py/web2py (Source code) -

Re: [web2py] Re: module vs plugin

2015-07-15 Thread Vikash Sharma
Module defines grouping logic at one place, the way you want to design it. Example, all customer database, order details, vendor details and respective operation are organised implemented separately. Read more about cohesion and coupling on wiki Plugins is more like a features you can attach to

[web2py] Re: module vs plugin

2015-07-15 Thread Anthony
It's not module *or* plugin -- a plugin can contain modules. A plugin is any subset of an application's files. If you want to modularize the models, views, and/or controllers of an app, then you would need to create a plugin. You can also move a lot of functionality to modules (which get