Changes

Line 144: Line 144:  
For example, to make a condition based on requiring Dolibarr version > 3.5, you can use versioncompare and versiondolibarrarray found in admin.lib.php:
 
For example, to make a condition based on requiring Dolibarr version > 3.5, you can use versioncompare and versiondolibarrarray found in admin.lib.php:
   −
<syntaxHighlight lang="php">
+
<syntaxhighlight lang="php">
 
if (versioncompare(versiondolibarrarray(), array(3,5,0)) > 0)
 
if (versioncompare(versiondolibarrarray(), array(3,5,0)) > 0)
 
{
 
{
 
  ...
 
  ...
 
}
 
}
</syntaxHighlight>
+
</syntaxhighlight>
    
=Mass exports/imports=
 
=Mass exports/imports=
Line 160: Line 160:  
#[[Interfaces Dolibarr toward foreign systems]] or Dolibarr toward Dolibarr (Dolibarr Triggers or Hooks)
 
#[[Interfaces Dolibarr toward foreign systems]] or Dolibarr toward Dolibarr (Dolibarr Triggers or Hooks)
 
#[[Interfaces from foreign systems toward Dolibarr]]
 
#[[Interfaces from foreign systems toward Dolibarr]]
 +
 +
== Integrate Dolibarr to automation platforms ==
 +
 +
# [[Integration of Dolibarr to the Zapier automation platform]]
 +
# [[Using Dolibarr node in the n8n automation platform]]
 +
# [[Integration of Dolibarr to the Make automation platform]]
    
=FAQ=
 
=FAQ=
 
All FAQs are available through the FAQ index page [[:Category:FAQ EN|FAQ EN]]
 
All FAQs are available through the FAQ index page [[:Category:FAQ EN|FAQ EN]]
 
[[Category:Development]]
 
[[Category:Development]]
29

edits