Difference between revisions of "Developer documentation"

From Dolibarr ERP CRM Wiki
Jump to navigation Jump to search
m
Tag: 2017 source edit
 
(36 intermediate revisions by 9 users not shown)
Line 1: Line 1:
<keywords content="developer, development, documentation, guide, doc, tutorial, usage, help, api, coding, standard, rules" />
+
<seo metak="developer, development, documentation, guide, doc, tutorial, usage, help, api, coding, standard, rules" />
This page is main index of documents relating to developer documentation. For user documentation, [[User documentation|see here]].
+
<!-- BEGIN interlang links -->
 +
<!-- Do NOT edit this section
 +
    Links below are automatically managed by PolyglotBot
 +
    You can edit links on the English source page : Developer_documentation -->
 +
[[fr:Documentation_Développeur]]
 +
[[es:Documentación_Desarrolladores]]
 +
[[de:Entwickler_Dokumentation]]
 +
[[zh:开发文档]]
 +
[[ja:JA_Developer_documentation]]
 +
<!-- END interlang links -->
  
 +
This page is main index of documents relating to developer documentation. For user documentation [[User documentation|see here]].
  
  
= Development organization and tools =
+
=Development organization and tools=
 
This chapter contains global information that must be read before starting any development on Dolibarr.
 
This chapter contains global information that must be read before starting any development on Dolibarr.
# [[Dolibarr Project|Organization of project]]
 
# [[To known before to start|To be known before starting to develop]]
 
# [[Environment and development tools]]
 
# [[Dependencies and external libraries]]
 
# [[FAQ_Get,update_project_sources|Get or update sources of a development version]]
 
  
= Coding rules and best practices =
+
#[[Dolibarr Project|Organization of project]]
# [[Prerequisite|Prerequisites]]
+
#[[To known before to start|To be known before starting to develop]]
# [[Language and development rules|Language and development rules (PHP, SQL, HTML)]]
+
#[[Environment and development tools]]
# [[:Category:Table SQL|List of tables]]
+
#[[Dependencies and external libraries]]
# Tree structure of files and classes are available in the [http://doxygen.dolibarr.org/ doxygen generated documentation]
+
#[[FAQ_Get,update_project_sources|Get or update sources of a development version]]
  
= List of modules =
+
=Coding rules and best practices=
 +
 
 +
#[[Prerequisite|Prerequisites]]
 +
#[[Language and development rules|Language and development rules (PHP, SQL, HTML)]]
 +
#[[:Category:Table SQL|List of tables]]
 +
#Tree structure of files and classes are available in the [https://doxygen.dolibarr.org/ doxygen generated documentation]
 +
 
 +
=List of modules=
 
Technical documentation on standard business modules is available in each module's developer documentation pages. Choose the appropriate page you are interested in:
 
Technical documentation on standard business modules is available in each module's developer documentation pages. Choose the appropriate page you are interested in:
  
* [[:Category:List of Modules (developer)‎|List of standard modules]]
+
*[[:Category:List of Modules (developer)‎|List of standard modules]]
* [[:Category:Complementary modules|List of complementary modules]]
+
*[[:Category:Complementary modules|List of complementary modules]]
 +
*[[Informations for developpers of complementary modules]]
  
= To develop a new module/addon for GUI =
+
=To develop a new module/addon for GUI=
 
This section describes how to develop a new module changing the Dolibarr user interface. This can be screens, themes, data, its own CSS stylesheet, source code or all of this.
 
This section describes how to develop a new module changing the Dolibarr user interface. This can be screens, themes, data, its own CSS stylesheet, source code or all of this.
  
Line 31: Line 44:
 
To develop your own module, check the [[Module development]] tutorial.
 
To develop your own module, check the [[Module development]] tutorial.
  
= To develop a batch or command line script =
+
=To develop a batch or command line script=
This chapter describe the way to develop its own command line script to realize Dolibarr treatments (read, update data...).
+
This chapter describes how to develop command line scripts to execute tasks in Dolibarr (read, update data...).
Making modifications on user Gui interface (GUI) is not included in this chapter. See previous chapter for this.
 
  
To develop a script, like a cron script or an command line import tool to import data from an external source, you can have a look at the page: [[Script development]]
+
Making modifications to the graphical user interface (GUI) is not included in this chapter. See the previous chapter for this.
  
= Technical components of Dolibarr =
+
To develop a script, like a cron script or a command line import tool to import data from an external source, you can have a look at the [[Script development]] page.
== Tree structure ==
 
Path hierarchy of current version are defined into [http://doxygen.dolibarr.org/ doxygen generated documentation] (generated "javadoc" like documentation).
 
  
However, paths to use to add new files by a new module is defined in the documentation to develop a new module (see [[Module development]]).
+
=Technical components of Dolibarr=
 +
==Tree structure==
 +
The path hierarchy of the current version files is available from the [http://doxygen.dolibarr.org/ doxygen generated documentation] (similar to generated "javadoc" documentation).
  
== Setup storage ==
+
Paths to use to add new files by a new module are defined in the documentation to develop a new module (see [[Module development]]).
 +
 
 +
==Setup storage==
 
There are 3 places for Dolibarr setup parameters.
 
There are 3 places for Dolibarr setup parameters.
* Dolibarr technical setup (authentication mode, database logins and storage area for files) are defined in only one setup file conf/conf.php. See [[Configuration file]] for more information.
 
* Global features parameters are stored in [[Table llx_const]]. See page [[Constants]] for more information.
 
* Feature parameters for particular users are stored in [[Table llx_user_param]]. See page [[Constants]] for more information.
 
  
== Business objects ==
+
*Dolibarr technical setup parameters (authentication mode, database logins and storage area for files) are defined in only one setup file: <code>/conf/conf.php</code> .
See page [[Business Objects]]
+
 
 +
:See [[Configuration file]] for more information.
 +
 
 +
*Global features parameters are stored in [[Table llx_const]].
 +
 
 +
:See the [[Constants]] page for more information.
  
== Menus system ==
+
*Feature parameters specific to a user are stored in [[Table llx_user_param]].
See page [[Menus system]]
 
  
== Tabs system ==
+
==Business objects==
See page [[Tabs system]]
+
See [[Business Objects]]  
  
== Skins system ==
+
==Menus system==
See page [[Skins]]
+
See [[Menus system]]  
  
== Box system ==
+
==Tabs system==
See page [[Box system]]
+
See [[Tabs system]]  
  
== Authentication system ==
+
==Skins system==
See page [[Authentication]]
+
See [[Skins]]  
  
== Permission system ==
+
==Widget system==
See page [[Permissions En|Permissions]]
+
See [[Widget system]]
  
== Translation system ==
+
==Authentication system==
See page [[Translation system]]
+
See [[Authentication]]  
  
== Error management ==
+
==Permission system==
See page [[Error reporting|Error reporting]]
+
See [[Permissions En|Permissions]]  
  
== Canvas system ==
+
==Translation system==
Canvas is a developer feature to replace sreens to create, update or view a card (products, thirdparties, contacts, ...). For example, you can replace the input form to create a new third party, or to edit it, or replace the card used to view it.
+
See [[Translation system]]
 +
 
 +
==Error management==
 +
See [[Error reporting|Error reporting]]
 +
 
 +
==Canvas system==
 +
Canvas is a developer feature to replace screens to create, update or view a record (products, thirdparties, contacts, ...). For example, you can replace the input form used to create a new third party, or its editing form, or replace its viewing template.
 
   
 
   
See page [[Canvas development]]
+
See [[Canvas development]]  
  
== Triggers system ==
+
==Triggers system==
Triggers is a develop feature to execute personalized code during a Dolibarr "Business event" (creation of invoice, delete of user, update of thirdparty, etc...), and only for a business event. To personalize code for other contexts, see instead chapter '''Hooks system'''.
+
Triggers are a development feature to execute personalized code during a Dolibarr "business event" (creation of an invoice, deleting a user, update of third party, etc...), and only for a business event. To personalize code for other contexts, see the '''Hooks system''' chapter instead.
  
 
For triggers usage, see [[Interfaces Dolibarr toward foreign systems|this page]].
 
For triggers usage, see [[Interfaces Dolibarr toward foreign systems|this page]].
  
== Hooks system ==
+
==Hooks system==
See page [[Hooks system]].
+
See [[Hooks system]]  
  
== Variable substitution system ==
+
==Variable substitution system==
See page [[Variable substitution system]].
+
See [[Variable substitution system]]  
  
== Web services ==
+
==Web services==
 
Dolibarr can be setup to provide some services.
 
Dolibarr can be setup to provide some services.
See [[Module Web Services]]
 
  
== Files/Documents storage management ==
+
See [[Module Web Services API REST (developer)]]
See page [[Generated documents]]
+
 
 +
Note: The [[Module Web Services API SOAP (developer)]] is deprecated.
 +
 
 +
==Files/Documents storage management==
 +
See [[Generated documents]]  
 +
 
 +
==Numbering modules==
 +
For each entity created in the application, Dolibarr assigns a reference. In order to adapt the reference to any use, Dolibarr use modules to define the reference generation rule. Several standard modules are supplied. Some are generic and are used to define the numbering mask (number on x characters, with or without prefix, including the date or not, etc.), which can meet most needs. However, there are still cases where the modules provided don't meet the needs. In this case it is necessary to develop a custom numbering module.
  
== Numbering modules ==
+
For more information, see [[Create numeration module|Create numbering module]].
For each entity created in the application, Dolibarr assigns a reference. In order to adapt the reference to any use, Dolibarr use modules to define the rule of generation of this reference. Several modules are supplied with application. Some are generic and are used to define the mask numbering (number on x characters, with or without prefix, including the date or not, etc.), which can meet most needs. However, there are still cases where the modules provided does not meet the need. In this case it is necessary to develop its own numbering module.
 
  
For more information, see on page [[Create numeration module]]
+
==Document templates and documents generation==
  
== Document templates and generating documents ==
+
More documentation about document generation from templates is available to [[Create a PDF document template]] or [[Create an ODT document template]].
More documentation about document generation from models is available on page [[Create a PDF document template]] or [[Create an ODT document template]]
 
  
== Extrafields ==
+
==Extrafields==
See page [[Extrafields]]
+
See [[Extrafields]]
  
== Other internal function ==
+
==Online payment system==
There is a lot of internal libraries your code can use.
+
See [[Online payment system]]
You may find a lot of generic functions into files functions.lib.php or functions2.lib.php or admin.lib.php. But any function found into htdocs/core/lib/*.lib files can be used.
 
  
'''To make a condition on Dolibarr version'''
+
==Other internal function==
 +
There are many internal libraries your code can use.
 +
You may find a lot of generic functions in the functions.lib.php, functions2.lib.php or admin.lib.php. Any function found in htdocs/core/lib/*.lib files can be used.
  
For example, to make a condition on Dolibarr > 3.5, you can use versioncompare and versiondolibarrarray found into admin.lib.php
+
'''To specify a requirement based on Dolibarr version number'''
<source lang="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">
 
if (versioncompare(versiondolibarrarray(), array(3,5,0)) > 0)
 
if (versioncompare(versiondolibarrarray(), array(3,5,0)) > 0)
 
{
 
{
 
  ...
 
  ...
 
}
 
}
</source>
+
</syntaxhighlight>
 +
 
 +
=Mass exports/imports=
 +
 
 +
*[[Mass imports]]
 +
*[[Module Exports En|Mass exports]]
 +
 
 +
=Interfaces and links with other applications=
 +
 
 +
Interfaces using API or WebHooks:
 +
 
 +
*[[Interfaces Dolibarr toward foreign systems]] or Dolibarr toward Dolibarr (Dolibarr Triggers, Hooks or WebHooks)
 +
*[[Interfaces from foreign systems toward Dolibarr]] (API WebServices)
 +
 
 +
Integrate Dolibarr to synchronization platforms:
 +
 
 +
*[[Module Splash|Integration of Dolibarr with Splash]]
 +
*[[Integration of Dolibarr with SyncHub]]
  
= Mass exports/imports =
+
Integrate Dolibarr to automation/no code platforms:
# [[Mass imports]]
 
# [[Module Exports En|Mass exports]]
 
  
= Interfaces and links with other applications =
+
*[[Integration of Dolibarr to the Zapier automation platform]]
# [[Interfaces Dolibarr toward foreign systems]] or toward Dolibarr (Dolibarr Triggers)
+
*[[Integration of Dolibarr to the n8n automation platform]]
# [[Interfaces from foreign systems toward Dolibarr]]
+
*[[Integration of Dolibarr to the Make automation platform]]
# [[Module Web Services|Web Services]]
 
  
= FAQ =
+
=FAQ=
All FAQ are available through index page [[:Category:FAQ EN|FAQ EN]]
+
All FAQs are available through the FAQ index page [[:Category:FAQ EN|FAQ EN]]
 +
[[Category:Development]]

Latest revision as of 14:46, 19 January 2025

This page is main index of documents relating to developer documentation. For user documentation see here.


Development organization and tools

This chapter contains global information that must be read before starting any development on Dolibarr.

  1. Organization of project
  2. To be known before starting to develop
  3. Environment and development tools
  4. Dependencies and external libraries
  5. Get or update sources of a development version

Coding rules and best practices

  1. Prerequisites
  2. Language and development rules (PHP, SQL, HTML)
  3. List of tables
  4. Tree structure of files and classes are available in the doxygen generated documentation

List of modules

Technical documentation on standard business modules is available in each module's developer documentation pages. Choose the appropriate page you are interested in:

To develop a new module/addon for GUI

This section describes how to develop a new module changing the Dolibarr user interface. This can be screens, themes, data, its own CSS stylesheet, source code or all of this.

Script development is not included in this section (this is described in the next chapter).

To develop your own module, check the Module development tutorial.

To develop a batch or command line script

This chapter describes how to develop command line scripts to execute tasks in Dolibarr (read, update data...).

Making modifications to the graphical user interface (GUI) is not included in this chapter. See the previous chapter for this.

To develop a script, like a cron script or a command line import tool to import data from an external source, you can have a look at the Script development page.

Technical components of Dolibarr

Tree structure

The path hierarchy of the current version files is available from the doxygen generated documentation (similar to generated "javadoc" documentation).

Paths to use to add new files by a new module are defined in the documentation to develop a new module (see Module development).

Setup storage

There are 3 places for Dolibarr setup parameters.

  • Dolibarr technical setup parameters (authentication mode, database logins and storage area for files) are defined in only one setup file: /conf/conf.php .
See Configuration file for more information.
See the Constants page for more information.

Business objects

See Business Objects

Menus system

See Menus system

Tabs system

See Tabs system

Skins system

See Skins

Widget system

See Widget system

Authentication system

See Authentication

Permission system

See Permissions

Translation system

See Translation system

Error management

See Error reporting

Canvas system

Canvas is a developer feature to replace screens to create, update or view a record (products, thirdparties, contacts, ...). For example, you can replace the input form used to create a new third party, or its editing form, or replace its viewing template.

See Canvas development

Triggers system

Triggers are a development feature to execute personalized code during a Dolibarr "business event" (creation of an invoice, deleting a user, update of third party, etc...), and only for a business event. To personalize code for other contexts, see the Hooks system chapter instead.

For triggers usage, see this page.

Hooks system

See Hooks system

Variable substitution system

See Variable substitution system

Web services

Dolibarr can be setup to provide some services.

See Module Web Services API REST (developer)

Note: The Module Web Services API SOAP (developer) is deprecated.

Files/Documents storage management

See Generated documents

Numbering modules

For each entity created in the application, Dolibarr assigns a reference. In order to adapt the reference to any use, Dolibarr use modules to define the reference generation rule. Several standard modules are supplied. Some are generic and are used to define the numbering mask (number on x characters, with or without prefix, including the date or not, etc.), which can meet most needs. However, there are still cases where the modules provided don't meet the needs. In this case it is necessary to develop a custom numbering module.

For more information, see Create numbering module.

Document templates and documents generation

More documentation about document generation from templates is available to Create a PDF document template or Create an ODT document template.

Extrafields

See Extrafields

Online payment system

See Online payment system

Other internal function

There are many internal libraries your code can use. You may find a lot of generic functions in the functions.lib.php, functions2.lib.php or admin.lib.php. Any function found in htdocs/core/lib/*.lib files can be used.

To specify a requirement based on Dolibarr version number

For example, to make a condition based on requiring Dolibarr version > 3.5, you can use versioncompare and versiondolibarrarray found in admin.lib.php:

if (versioncompare(versiondolibarrarray(), array(3,5,0)) > 0)
{
 ...
}

Mass exports/imports

Interfaces and links with other applications

Interfaces using API or WebHooks:

Integrate Dolibarr to synchronization platforms:

Integrate Dolibarr to automation/no code platforms:

FAQ

All FAQs are available through the FAQ index page FAQ EN