Add custom Template field shortcuts

It is easily possible to add your own shortcuts, which could be used within every template field. Create a file <customname>.inc.php in the folder modules/Workflow2/extends/shortfunctions/ This files don’t must follow any structure, but we would recommend, to bundle your functions within a class to prevent duplicate function names. We recommend the following structure: [prism field=field1…

How to implement an own Inventory Loader?

If you want to implement your own Inventory Loader to, for example, add Products from something inside your module? That’s easy! Create a file <customname>.inc.php in the folder modules/Workflow2/extends/inventoryloader/ This file must have the following structure: [prism field=file language=php] [vc_table]LOADERKEY,internal%20key%20of%20your%20loader%20to%20be%20able%20to%20register%20multiple%20loader|LOADERLABEL,Visible%20Label%20of%20Inventory%20Loader|LOADERCONFIG,Config%2C%20visible%20if%20Loader%20of%20selected[/vc_table] The CustomClassName could be chosen like you want. It only must equal in class definition…

How to add custom inventory fields

If you implement custom fields in your Inventory Records, like Invoice, Quotes, the values will be deleted during any workflows and you couldn’t interact with this values from Workflow Designer before version 600.0825. With this version, you could create a file named “InventoryFields.inc.php” directly into the “extends” directory. This file will not be overwritten during…