Laurent Destailleur 9ebf7a1e35 Try to fix the group_concat function for pgsql. 9 лет назад
..
.gitignore 9f035d3b91 New: Add web service to get user 13 лет назад
README dcba31a4db translation enhancement 13 лет назад
build_api_class.php bbe7498de6 Better Travis CI 9 лет назад
build_class_from_table.php 79be93d998 FIX The table llx_product_lot is now filled/used to store eatby/sellby 9 лет назад
build_webservice_from_class.php bbe7498de6 Better Travis CI 9 лет назад
modMyModule.class.php 9ebf7a1e35 Try to fix the group_concat function for pgsql. 9 лет назад
skeleton_api_class.class.php dbb9449ee7 Fix PHPCS 10 лет назад
skeleton_card.php 91caea5707 Code was corrupted with very bad commits. I restore files manually. 9 лет назад
skeleton_class.class.php c2de7adb32 Minor PHPCS fixes 9 лет назад
skeleton_list.php f9ded46a99 Start debug 4.0 9 лет назад
skeleton_script.php bbe7498de6 Better Travis CI 9 лет назад
skeleton_webservice_server.php 8996953077 Fix: error reported by scrutinizer 10 лет назад

README

README (English)
--------------------------------
This directory contains PHP script samples that can be used to start a development on Dolibarr.

build_class_from_table.php:
This is the script to use to generate PHP code of a PHP POJO class
object, a PHP script that use this POJO. This script use the files
skeleton_*.php to build its generated code.


modMyModule.class.php:
Is a sample of module descriptor that you can use if you want to build a new module/plugin for
Dolibarr.


skeleton_script.php:
Is a sample you can use as an example if you need to build a script to run on command line

skeleton_page.php:
Is a sample you can use as an example if you need to build an HTML page to include in Dolibarr GUI.

skeleton_class.class.php:
Is a sample you can use as an example if you need to build a class file to access a new table required by a Dolibarr development.
However it is better to run the build_class_from_table.php script that accepts a table name as a parameter and will uses the description table within database and the skeleton_class.class.php file to generate full code for your class file.
After running this script, the class to access your table (insert a record, update, delete and select) is directly finished and can be used by your module's code.
No more coding is needed to get access to table with this script because the file is completely generated once.