28require_once DOL_DOCUMENT_ROOT.
'/core/class/commonobject.class.php';
38 public $element =
'emailcollectoraction';
43 public $table_element =
'emailcollector_emailcollectoraction';
48 public $picto =
'emailcollectoraction@emailcollector';
74 public $fields = array(
75 'rowid' => array(
'type' =>
'integer',
'label' =>
'TechnicalID',
'enabled' => 1,
'visible' => -1,
'position' => 1,
'notnull' => 1,
'index' => 1,
'comment' =>
"Id",),
76 'fk_emailcollector' => array(
'type' =>
'integer',
'label' =>
'Id of emailcollector',
'foreignkey' =>
'emailcollector.rowid'),
77 'type' => array(
'type' =>
'varchar(128)',
'label' =>
'Type',
'enabled' => 1,
'visible' => 1,
'position' => 10,
'notnull' => 1,
'index' => 1),
78 'actionparam' => array(
'type' =>
'text',
'label' =>
'ParamForAction',
'enabled' => 1,
'visible' => 1,
'position' => 40,
'notnull' => -1),
79 'date_creation' => array(
'type' =>
'datetime',
'label' =>
'DateCreation',
'enabled' => 1,
'visible' => -2,
'position' => 500,
'notnull' => 1,),
80 'tms' => array(
'type' =>
'timestamp',
'label' =>
'DateModification',
'enabled' => 1,
'visible' => -2,
'position' => 501,
'notnull' => 1,),
81 'fk_user_creat' => array(
'type' =>
'integer',
'label' =>
'UserAuthor',
'enabled' => 1,
'visible' => -2,
'position' => 510,
'notnull' => 1,
'foreignkey' =>
'llx_user.rowid',),
82 'fk_user_modif' => array(
'type' =>
'integer',
'label' =>
'UserModif',
'enabled' => 1,
'visible' => -2,
'position' => 511,
'notnull' => -1,),
83 'position' => array(
'type' =>
'integer',
'label' =>
'Position',
'enabled' => 1,
'visible' => 1,
'position' => 600,
'default' =>
'0',),
84 'import_key' => array(
'type' =>
'varchar(14)',
'label' =>
'ImportId',
'enabled' => 1,
'visible' => -2,
'position' => 1000,
'notnull' => -1,),
85 'status' => array(
'type' =>
'integer',
'label' =>
'Status',
'enabled' => 1,
'visible' => 1,
'position' => 1000,
'notnull' => 1,
'default' => 1,
'arrayofkeyval' => array(
'0' =>
'Disabled',
'1' =>
'Enabled')),
88 public $fk_emailcollector;
95 public $date_creation;
97 public $fk_user_creat;
98 public $fk_user_modif;
111 global $conf, $langs;
115 $this->ismultientitymanaged = 0;
116 $this->isextrafieldmanaged = 0;
119 $this->fields[
'rowid'][
'visible'] = 0;
121 if (!isModEnabled(
'multicompany') && isset($this->fields[
'entity'])) {
122 $this->fields[
'entity'][
'enabled'] = 0;
126 foreach ($this->fields as $key => $val) {
127 if (isset($val[
'enabled']) && empty($val[
'enabled'])) {
128 unset($this->fields[$key]);
133 foreach ($this->fields as $key => $val) {
134 if (!empty($val[
'arrayofkeyval']) && is_array($val[
'arrayofkeyval'])) {
135 foreach ($val[
'arrayofkeyval'] as $key2 => $val2) {
136 $this->fields[$key][
'arrayofkeyval'][$key2] = $langs->trans($val2);
152 if (empty($this->
type)) {
153 $langs->load(
"errors");
154 $this->errors[] = $langs->trans(
"ErrorFieldRequired", $langs->transnoentitiesnoconv(
"Type"));
170 global $langs, $hookmanager, $extrafields;
187 $object->ref =
"copy_of_".$object->ref;
191 if (is_array(
$object->array_options) && count(
$object->array_options) > 0) {
192 $extrafields->fetch_name_optionals_label($this->table_element);
193 foreach (
$object->array_options as $key => $option) {
194 $shortkey = preg_replace(
'/options_/',
'', $key);
195 if (!empty($extrafields->attributes[$this->element][
'unique'][$shortkey])) {
196 unset(
$object->array_options[$key]);
202 $object->context[
'createfromclone'] =
'createfromclone';
203 $result =
$object->createCommon($user);
207 $this->errors =
$object->errors;
210 unset(
$object->context[
'createfromclone']);
217 $this->db->rollback();
229 public function fetch($id, $ref =
null)
255 public function delete(
User $user, $notrigger = 0)
270 public function getNomUrl($withpicto = 0, $option =
'', $notooltip = 0, $morecss =
'', $save_lastsearch_value = -1)
272 global $db, $conf, $langs, $hookmanager;
273 global $dolibarr_main_authentication, $dolibarr_main_demo;
276 if (!empty($conf->dol_no_mouse_hover)) {
282 $label =
'<u>'.$langs->trans(
"EmailcollectorAction").
'</u>';
284 $label .=
'<b>'.$langs->trans(
'Ref').
':</b> '.$this->ref;
286 $url =
dol_buildpath(
'/emailcollector/emailcollectoraction_card.php', 1).
'?id='.$this->id;
288 if ($option !=
'nolink') {
290 $add_save_lastsearch_values = ($save_lastsearch_value == 1 ? 1 : 0);
291 if ($save_lastsearch_value == -1 && isset($_SERVER[
"PHP_SELF"]) && preg_match(
'/list\.php/', $_SERVER[
"PHP_SELF"])) {
292 $add_save_lastsearch_values = 1;
294 if ($add_save_lastsearch_values) {
295 $url .=
'&save_lastsearch_values=1';
300 if (empty($notooltip)) {
302 $label = $langs->trans(
"ShowEmailcollectorAction");
303 $linkclose .=
' alt="'.dol_escape_htmltag($label, 1).
'"';
305 $linkclose .=
' title="'.dol_escape_htmltag($label, 1).
'"';
306 $linkclose .=
' class="classfortooltip'.($morecss ?
' '.$morecss :
'').
'"';
315 $linkclose = ($morecss ?
' class="'.$morecss.
'"' :
'');
318 $linkstart =
'<a href="'.$url.
'"';
319 $linkstart .= $linkclose.
'>';
322 $result .= $linkstart;
324 $result .=
img_object(($notooltip ?
'' : $label), ($this->picto ? $this->picto :
'generic'), ($notooltip ? (($withpicto != 2) ?
'class="paddingright"' :
'') :
'class="'.(($withpicto != 2) ?
'paddingright ' :
'').
'classfortooltip"'), 0, 0, $notooltip ? 0 : 1);
326 if ($withpicto != 2) {
327 $result .= $this->ref;
332 global $action, $hookmanager;
333 $hookmanager->initHooks(array(
'emailcollectoractiondao'));
334 $parameters = array(
'id' => $this->
id,
'getnomurl' => &$result);
335 $reshook = $hookmanager->executeHooks(
'getNomUrl', $parameters, $this, $action);
337 $result = $hookmanager->resPrint;
339 $result .= $hookmanager->resPrint;
367 if (empty($this->labelStatus)) {
370 $this->labelStatus[1] = $langs->trans(
'Enabled');
371 $this->labelStatus[0] = $langs->trans(
'Disabled');
375 return $this->labelStatus[$status];
376 } elseif ($mode == 1) {
377 return $this->labelStatus[$status];
378 } elseif ($mode == 2) {
380 return img_picto($this->labelStatus[$status],
'statut4',
'',
false, 0, 0,
'',
'valignmiddle').
' '.$this->labelStatus[$status];
381 } elseif ($status == 0) {
382 return img_picto($this->labelStatus[$status],
'statut5',
'',
false, 0, 0,
'',
'valignmiddle').
' '.$this->labelStatus[$status];
384 } elseif ($mode == 3) {
386 return img_picto($this->labelStatus[$status],
'statut4',
'',
false, 0, 0,
'',
'valignmiddle');
387 } elseif ($status == 0) {
388 return img_picto($this->labelStatus[$status],
'statut5',
'',
false, 0, 0,
'',
'valignmiddle');
390 } elseif ($mode == 4) {
392 return img_picto($this->labelStatus[$status],
'statut4',
'',
false, 0, 0,
'',
'valignmiddle').
' '.$this->labelStatus[$status];
393 } elseif ($status == 0) {
394 return img_picto($this->labelStatus[$status],
'statut5',
'',
false, 0, 0,
'',
'valignmiddle').
' '.$this->labelStatus[$status];
396 } elseif ($mode == 5) {
398 return $this->labelStatus[$status].
' '.
img_picto($this->labelStatus[$status],
'statut4',
'',
false, 0, 0,
'',
'valignmiddle');
399 } elseif ($status == 0) {
400 return $this->labelStatus[$status].
' '.
img_picto($this->labelStatus[$status],
'statut5',
'',
false, 0, 0,
'',
'valignmiddle');
402 } elseif ($mode == 6) {
404 return $this->labelStatus[$status].
' '.
img_picto($this->labelStatus[$status],
'statut4',
'',
false, 0, 0,
'',
'valignmiddle');
405 } elseif ($status == 0) {
406 return $this->labelStatus[$status].
' '.
img_picto($this->labelStatus[$status],
'statut5',
'',
false, 0, 0,
'',
'valignmiddle');
420 $sql =
'SELECT rowid, date_creation as datec, tms as datem,';
421 $sql .=
' fk_user_creat, fk_user_modif';
422 $sql .=
' FROM '.MAIN_DB_PREFIX.$this->table_element.
' as t';
423 $sql .=
' WHERE t.rowid = '.((int) $id);
424 $result = $this->db->query($sql);
426 if ($this->db->num_rows($result)) {
427 $obj = $this->db->fetch_object($result);
429 $this->
id = $obj->rowid;
431 $this->user_creation_id = $obj->fk_user_creat;
432 $this->user_modification_id = $obj->fk_user_modif;
433 $this->date_creation = $this->db->jdate($obj->datec);
434 $this->date_modification = empty($obj->datem) ?
'' : $this->db->jdate($obj->datem);
437 $this->db->free($result);
if( $user->socid > 0) if(! $user->hasRight('accounting', 'chartofaccount')) $object
print $langs trans("AuditedSecurityEvents").'</strong >< span class="opacitymedium"></span >< br > status
Or an array listing all the potential status of the object: array: int of the status => translated la...
Parent class of all other business classes (invoices, contracts, proposals, orders,...
createCommon(User $user, $notrigger=0)
Create object in the database.
updateCommon(User $user, $notrigger=0)
Update object into database.
initAsSpecimenCommon()
Initialise object with example values Id must be 0 if object instance is a specimen.
fetchCommon($id, $ref=null, $morewhere='', $noextrafields=0)
Load object in memory from the database.
deleteCommon(User $user, $notrigger=0, $forcechilddeletion=0)
Delete object in database.
Class to manage Dolibarr database access.
Class for EmailCollectorAction.
fetch($id, $ref=null)
Load object in memory from the database.
create(User $user, $notrigger=0)
Create object into database.
LibStatut($status, $mode=0)
Return the status.
getNomUrl($withpicto=0, $option='', $notooltip=0, $morecss='', $save_lastsearch_value=-1)
Return a link to the object card (with optionally the picto)
__construct(DoliDB $db)
Constructor.
createFromClone(User $user, $fromid)
Clone and object into another one.
info($id)
Charge les information d'ordre info dans l'objet commande.
getLibStatut($mode=0)
Return label of the status.
initAsSpecimen()
Initialise object with example values Id must be 0 if object instance is a specimen.
update(User $user, $notrigger=0)
Update object into database.
Class to manage Dolibarr users.
img_object($titlealt, $picto, $moreatt='', $pictoisfullpath=0, $srconly=0, $notitle=0)
Show a picto called object_picto (generic function)
img_picto($titlealt, $picto, $moreatt='', $pictoisfullpath=0, $srconly=0, $notitle=0, $alt='', $morecss='', $marginleftonlyshort=2)
Show picto whatever it's its name (generic function)
dol_buildpath($path, $type=0, $returnemptyifnotfound=0)
Return path of url or filesystem.
dol_print_error($db=null, $error='', $errors=null)
Displays error message system with all the information to facilitate the diagnosis and the escalation...
getDolGlobalString($key, $default='')
Return dolibarr global constant string value.
dol_syslog($message, $level=LOG_INFO, $ident=0, $suffixinfilename='', $restricttologhandler='', $logcontext=null)
Write log message into outputs.
if(preg_match('/crypted:/i', $dolibarr_main_db_pass)||!empty($dolibarr_main_db_encrypted_pass)) $conf db type