Update and standardize code

This commit is contained in:
Philippe GRAND 2018-08-17 22:29:21 +02:00
parent c48211ad70
commit da951e61f2
6 changed files with 29 additions and 8 deletions

View File

@ -29,7 +29,11 @@
class AccountancySystem
{
var $db;
var $error;
/**
* @var string Error code (or message)
*/
public $error='';
var $rowid;
var $fk_pcg_version;
var $pcg_type;

View File

@ -41,8 +41,10 @@ abstract class ActionsAdherentCardCommon
var $tpl = array();
//! Object container
var $object;
//! Error string
var $error;
/**
* @var string Error code (or message)
*/
public $error='';
/**
*

View File

@ -28,7 +28,11 @@
*/
class CActionComm
{
var $error;
/**
* @var string Error code (or message)
*/
public $error='';
var $db;
var $id;

View File

@ -30,7 +30,11 @@ class AdvanceTargetingMailing extends CommonObject
{
var $db; //!< To store db handler
var $error; //!< To return error code (or message)
/**
* @var string Error code (or message)
*/
public $error='';
/**
*
* @var string[] Error codes (or messages)

View File

@ -27,7 +27,10 @@
class FormAdvTargetEmailing extends Form
{
var $db;
var $error;
/**
* @var string Error code (or message)
*/
public $error='';
/**
* Constructor

View File

@ -37,8 +37,12 @@ abstract class ActionsCardCommon
var $tpl = array();
//! Object container
var $object;
//! Error string
var $error;
/**
* @var string Error code (or message)
*/
public $error='';
/**
*
* @var string[] Error codes (or messages)