I have a used the Computed Field extensively in developing two websites which I use internally for my business, both hosted by LAMP servers on my own network. One is an MRP system which tracks our manufacturing process, the other is a Document Control system which handles all of our engineering documentation (to aerospace standards). The former is a D6 site, the latter is a D7 site.
So I have some curiosity... Does anyone else use the Computed Field as a means of prototyping code before deploying it into a module? Does this workflow even make sense?
The reason I ask is that, although I am a reasonably accomplished programmer (from back in the day), I have never yet actually sat down and taken the time to go through all the steps to implement a module. I'm in a hurry, and probably lazy... And I have a business to run, so I've never had time to actually lay things out like I should.
The upshot: I have the basic functionality of a reasonably complete ERP system running, albeit on two separate sites. So how might I enlist the help of the world's collection of far more capable coders than myself to actually make this into a deployable product: BackdERP ?
Okay, we'll probably have to come up with a better name.
Recent comments
Thanks. openid_connect is actually a different beast than OpenID. I think the "connect" version implements an OpenID client to work on an Oauth server. Or something like that.
OpenID?
I think this alternative works too. Instead of installing the stub modules, you may be able to just insert the relevant records in the systems table (while also ensuring entity_plus and...
Entity_plus_custom with search api
This relates to a problem with creating a View of Projects on a site using MySQL >= 8.0.3 https://github.com/backdrop/backdrop-issues/issues/5795 I can't be at the meeting this...
Dec 5th Weekly Dev Meeting
Additionally, "outside" means a file that is located outside a module folder. The second parameter of module_load_include() is the name of a module, so, this function assumes that you are loading a...
How to include other files in module?
Yes, it does mean outside your functions. You can use module_load_include() within functions but not outside. The YouTube module gives an example: <?php /** * @file * Youtube field module adds...
How to include other files in module?