This commit is contained in:
Frédéric FRANCE 2023-02-28 08:56:38 +01:00
parent 857a3090ca
commit 04ff41adc3

View File

@ -72,7 +72,6 @@ class ActionCommReminder extends CommonObject
* 'showoncombobox' if field must be shown into the label of combobox * 'showoncombobox' if field must be shown into the label of combobox
*/ */
// BEGIN MODULEBUILDER PROPERTIES
/** /**
* @var array Array with all fields and their property. Do not use it as a static var. It may be modified by constructor. * @var array Array with all fields and their property. Do not use it as a static var. It may be modified by constructor.
*/ */
@ -101,6 +100,10 @@ class ActionCommReminder extends CommonObject
public $entity; public $entity;
public $dateremind; public $dateremind;
/**
* @var string reminder type email, browser, sms
*/
public $typeremind; public $typeremind;
/** /**
@ -108,7 +111,14 @@ class ActionCommReminder extends CommonObject
*/ */
public $fk_user; public $fk_user;
/**
* @var int offset value
*/
public $offsetvalue; public $offsetvalue;
/**
* @var string y, m, d, w, h, i
*/
public $offsetunit; public $offsetunit;
/** /**
@ -131,10 +141,6 @@ class ActionCommReminder extends CommonObject
*/ */
public $fk_email_template; public $fk_email_template;
// END MODULEBUILDER PROPERTIES
/** /**
* Constructor * Constructor
* *