Documentation doxygen

This commit is contained in:
sparkyx 2021-07-30 09:33:27 +02:00
commit 496266799c
119 changed files with 637 additions and 150 deletions

View file

@ -24,6 +24,12 @@
*
* @file
* @brief abstract of the table public.action_gestion_comment */
/**
* @class Action_Gestion_Comment_SQL
* @brief ORM SQL Action_Gestion_Comment
*/
class Action_Gestion_Comment_SQL extends Table_Data_SQL
{

View file

@ -24,7 +24,14 @@
*
* @file
* @brief abstract of the table public.action_gestion */
class Action_gestion_SQL extends Table_Data_SQL
/**
* @class Action_Gestion_SQL
* @brief ORM public.action_gestion
*/
class Action_Gestion_SQL extends Table_Data_SQL
{
function __construct(DatabaseCore $p_cn, $p_id=-1)

View file

@ -24,6 +24,11 @@
*
* @file
* @brief abstract of the table public.attr_def */
/**
* @class Attr_def_SQL
* @brief abstract of the table public.attr_def
*/
class Attr_def_SQL extends Table_Data_SQL
{

View file

@ -26,6 +26,11 @@
*
* @file
* @brief abstract of the table public.contact_option_ref */
/**
* @class Contact_option_ref_SQL
* @brief abstract of the table public.contact_option_ref
*/
class Contact_option_ref_SQL extends Table_Data_SQL
{

View file

@ -25,6 +25,11 @@
*
* @file
* @brief abstract of the table public.currency_history */
/**
* @class Currency_history_SQL
* @brief abstract of the table public.currency_history
*/
class Currency_history_SQL extends Table_Data_SQL
{

View file

@ -25,6 +25,11 @@
*
* @file
* @brief abstract of the table public.currency */
/**
* @class Currency_SQL
* @brief abstract of the table public.currency */
class Currency_SQL extends Table_Data_SQL
{

View file

@ -27,7 +27,7 @@
*/
/**
* @class
* @class Document_type_SQL
* @brief abstract of the table public.document_type
*/
class Document_type_SQL extends Table_Data_SQL

View file

@ -25,8 +25,8 @@
*/
/**
* @class
* @file Manage the table public.fiche_def_ref , which concerns the template of
* @class Fiche_def_ref_SQL
* @brief ORM Manage the table public.fiche_def_ref , which concerns the template of
* category of card
*/
class Fiche_def_ref_SQL extends Table_Data_SQL

View file

@ -26,6 +26,11 @@
* @file
* @brief abstract of the table public.forecast_category
*/
/**
* @class Forecast_Category_SQL
*
* @brief ORM abstract of the table public.forecast_category
*/
class Forecast_Category_SQL extends Table_Data_SQL
{
@ -62,4 +67,4 @@ class Forecast_Category_SQL extends Table_Data_SQL
}
}
}

View file

@ -25,6 +25,10 @@
* @file
* @brief abstract of the table public.forecast_item
*/
/**
* @class Forecast_Item_SQL
* @brief ORM abstract of the table public.forecast_item
*/
class Forecast_Item_SQL extends Table_Data_SQL
{

View file

@ -26,6 +26,10 @@
* @file
* @brief abstract of the table public.forecast
*/
/**
* @class Forecast_SQL
* @brief ORM abstract of the table public.forecast
*/
class Forecast_SQL extends Table_Data_SQL
{
@ -62,4 +66,4 @@ class Forecast_SQL extends Table_Data_SQL
}
}
}

View file

@ -24,6 +24,9 @@
*
* @file
* @brief abstract of the table public.form_definition */
/**
* @class Form_Definition_SQL
* @brief ORM abstract of the table public.form_definition */
class Form_Definition_SQL extends \Table_Data_SQL
{

View file

@ -24,6 +24,9 @@
*
* @file
* @brief abstract of the table public.form_detail */
/**
* @class Form_Detail_SQL
* @brief ORM abstract of the table public.form_detail */
class Form_Detail_SQL extends \Table_Data_SQL
{

View file

@ -24,6 +24,9 @@
*
* @file
* @brief abstract of the table public.jrn_def */
/**
* @class Jrn_def_SQL
* @brief ORM abstract of the table public.jrn_def */
class Jrn_def_SQL extends Table_Data_SQL
{

View file

@ -28,7 +28,8 @@
require_once NOALYSS_INCLUDE.'/lib/ac_common.php';
/**
* @brief Manage the table public.menu_ref
* @class Menu_Ref_SQL
* @brief ORM Manage the table public.menu_ref
*/
class Menu_Ref_SQL extends Table_Data_SQL
{

View file

@ -24,7 +24,13 @@
*
*@file
*@brief abstract of the table public.op_predef */
class Op_predef_SQL extends Table_Data_SQL
/**
*@class Op_Predef_SQL
*@brief ORM abstract of the table public.op_predef */
class Op_Predef_SQL extends Table_Data_SQL
{
function __construct(DatabaseCore $p_cn,$p_id=-1)
@ -66,4 +72,4 @@ class Op_predef_SQL extends Table_Data_SQL
}
}
}

View file

@ -25,6 +25,13 @@
* @file
* @brief abstract of the table public.operation_currency
*/
/**
* @class Operation_currency_SQL
* @brief ORM abstract of the table public.operation_currency
*/
class Operation_currency_SQL extends Table_Data_SQL
{

View file

@ -25,6 +25,10 @@
*
*@file
*@brief abstract of the table public.parameter_extra */
/**
* @class Parameter_Extra_SQL
*@brief abstract of the table public.parameter_extra */
class Parameter_Extra_SQL extends Table_Data_SQL
{

View file

@ -28,7 +28,8 @@
*/
/**
* *@brief Manage the table public.parm_periode
* @class Parm_periode_SQL
* @brief ORM Manage the table public.parm_periode
*/
class Parm_periode_SQL extends Table_Data_SQL
{

View file

@ -26,7 +26,7 @@
* @brief abstract of the table public.poste_analytique
*
*
* @class
* @class Poste_analytique_SQL
* @brief abstract of the table public.poste_analytique */
require_once NOALYSS_INCLUDE.'/lib/ac_common.php';

View file

@ -22,7 +22,11 @@
/**
* @file
* @brief
* @brief abstract of the table public.stock_goods and public.stock_change
*/
/**
* @class Stock_Goods_Sql
* @brief ORM abstract of the table public.stock_goods
*
*/
@ -80,6 +84,10 @@ class Stock_Goods_Sql extends Table_Data_SQL
}
/**
* @class Stock_Change_Sql
* @brief ORM abstract of the table public.stock_change
*/
class Stock_Change_Sql extends Table_Data_SQL
{

View file

@ -22,10 +22,15 @@
/**
* @file
* @brief
* @brief abstract of the table public.stock_repository
*
*/
/**
* @class Stock_Sql
*
* @brief ORM abstract of the table public.stock_repository
*/
class Stock_Sql extends Table_Data_SQL {
function __construct($cn,$p_id=-1)
{

View file

@ -25,6 +25,13 @@
*
*@file
*@brief abstract of the table public.tag_group */
/**
* @class Tag_group_SQL
* @brief ORM abstract of the table public.tag_group
*
*/
class Tag_group_SQL extends Table_Data_SQL
{
@ -57,4 +64,4 @@ function __construct(DatabaseCore $p_cn,$p_id=-1)
}
}
}

View file

@ -19,11 +19,16 @@
*/
/* * *
/**
* @file
* @brief
* @brief abstract of the table public.tmp_pcmn
*
*/
/**
* @class Tmp_Pcmn_SQL
*
* @brief ORM abstract of the table public.tmp_pcmn
*/
class Tmp_Pcmn_SQL extends Table_Data_SQL
{

View file

@ -26,6 +26,11 @@
* @brief abstract of the table public.tva_rate
*
*/
/**
* @class Tva_rate_SQL
* @brief abstract of the table public.tva_rate
*/
class Tva_rate_SQL extends Table_Data_SQL
{

View file

@ -26,6 +26,11 @@
* @file
* @brief abstract of the table public.user_filter
*/
/**
* @class User_filter_SQL
* @brief ORM abstract of the table public.user_filter
*/
class User_filter_SQL extends Table_Data_SQL
{

View file

@ -30,7 +30,7 @@
/**
* class_currency_history_sql.php
*
* @class
* @class V_Currency_Last_Value_SQL
* @brief abstract of the view public.v_currency_last_value
*/
class V_Currency_Last_Value_SQL extends Data_SQL

View file

@ -26,6 +26,10 @@
* @brief abstract of the view public.v_tva_rate
*
*/
/**
* @class V_Tva_Rate_SQL
* @brief ORM abstract of the view public.v_tva_rate
*/
class V_Tva_Rate_SQL extends Table_Data_SQL
{
@ -72,4 +76,4 @@ class V_Tva_Rate_SQL extends Table_Data_SQL
parent::__construct($p_cn, $p_id);
}
}
}