dolibarr 21.0.0-alpha
emailcollectoraction.class.php
Go to the documentation of this file.
1<?php
2/* Copyright (C) 2017 Laurent Destailleur <eldy@users.sourceforge.net>
3 * Copyright (C) ---Put here your own copyright and developer email---
4 * Copyright (C) 2024 Frédéric France <frederic.france@free.fr>
5 * Copyright (C) 2024 MDW <mdeweerd@users.noreply.github.com>
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 3 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program. If not, see <https://www.gnu.org/licenses/>.
19 */
20
27// Put here all includes required by your class file
28require_once DOL_DOCUMENT_ROOT.'/core/class/commonobject.class.php';
29
34{
38 public $element = 'emailcollectoraction';
39
43 public $table_element = 'emailcollector_emailcollectoraction';
44
48 public $picto = 'emailcollectoraction@emailcollector';
49
50
70 // BEGIN MODULEBUILDER PROPERTIES
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')),
86 );
87 public $rowid;
88 public $fk_emailcollector;
89 public $type;
90 public $actionparam;
91
92 public $fk_user_creat;
93 public $fk_user_modif;
94 public $position;
95 public $import_key;
96 public $status;
97 // END MODULEBUILDER PROPERTIES
98
104 public function __construct(DoliDB $db)
105 {
106 global $conf, $langs;
107
108 $this->db = $db;
109
110 $this->ismultientitymanaged = 0;
111 $this->isextrafieldmanaged = 0;
112
113 if (!getDolGlobalString('MAIN_SHOW_TECHNICAL_ID') && isset($this->fields['rowid'])) {
114 $this->fields['rowid']['visible'] = 0;
115 }
116 if (!isModEnabled('multicompany') && isset($this->fields['entity'])) {
117 $this->fields['entity']['enabled'] = 0;
118 }
119
120 // Unset fields that are disabled
121 foreach ($this->fields as $key => $val) {
122 if (isset($val['enabled']) && empty($val['enabled'])) {
123 unset($this->fields[$key]);
124 }
125 }
126
127 // Translate some data of arrayofkeyval
128 foreach ($this->fields as $key => $val) {
129 if (!empty($val['arrayofkeyval']) && is_array($val['arrayofkeyval'])) {
130 foreach ($val['arrayofkeyval'] as $key2 => $val2) {
131 $this->fields[$key]['arrayofkeyval'][$key2] = $langs->trans($val2);
132 }
133 }
134 }
135 }
136
144 public function create(User $user, $notrigger = 0)
145 {
146 global $langs;
147 if (empty($this->type)) {
148 $langs->load("errors");
149 $this->errors[] = $langs->trans("ErrorFieldRequired", $langs->transnoentitiesnoconv("Type"));
150 return -1;
151 }
152
153 return $this->createCommon($user, $notrigger);
154 }
155
163 public function createFromClone(User $user, $fromid)
164 {
165 global $langs, $hookmanager, $extrafields;
166 $error = 0;
167
168 dol_syslog(__METHOD__, LOG_DEBUG);
169
170 $object = new self($this->db);
171
172 $this->db->begin();
173
174 // Load source object
175 $object->fetchCommon($fromid);
176 // Reset some properties
177 unset($object->id);
178 unset($object->fk_user_creat);
179 unset($object->import_key);
180
181 // Clear fields
182 $object->ref = "copy_of_".$object->ref;
183 // $object->title = $langs->trans("CopyOf")." ".$object->title;
184
185 // Clear extrafields that are unique
186 if (is_array($object->array_options) && count($object->array_options) > 0) {
187 $extrafields->fetch_name_optionals_label($this->table_element);
188 foreach ($object->array_options as $key => $option) {
189 $shortkey = preg_replace('/options_/', '', $key);
190 if (!empty($extrafields->attributes[$this->element]['unique'][$shortkey])) {
191 unset($object->array_options[$key]);
192 }
193 }
194 }
195
196 // Create clone
197 $object->context['createfromclone'] = 'createfromclone';
198 $result = $object->createCommon($user);
199 if ($result < 0) {
200 $error++;
201 $this->error = $object->error;
202 $this->errors = $object->errors;
203 }
204
205 unset($object->context['createfromclone']);
206
207 // End
208 if (!$error) {
209 $this->db->commit();
210 return $object;
211 } else {
212 $this->db->rollback();
213 return -1;
214 }
215 }
216
224 public function fetch($id, $ref = null)
225 {
226 $result = $this->fetchCommon($id, $ref);
227
228 return $result;
229 }
230
238 public function update(User $user, $notrigger = 0)
239 {
240 return $this->updateCommon($user, $notrigger);
241 }
242
250 public function delete(User $user, $notrigger = 0)
251 {
252 return $this->deleteCommon($user, $notrigger);
253 }
254
265 public function getNomUrl($withpicto = 0, $option = '', $notooltip = 0, $morecss = '', $save_lastsearch_value = -1)
266 {
267 global $db, $conf, $langs, $hookmanager;
268 global $dolibarr_main_authentication, $dolibarr_main_demo;
269 global $menumanager;
270
271 if (!empty($conf->dol_no_mouse_hover)) {
272 $notooltip = 1; // Force disable tooltips
273 }
274
275 $result = '';
276
277 $label = '<u>'.$langs->trans("EmailcollectorAction").'</u>';
278 $label .= '<br>';
279 $label .= '<b>'.$langs->trans('Ref').':</b> '.$this->ref;
280
281 $url = dol_buildpath('/emailcollector/emailcollectoraction_card.php', 1).'?id='.$this->id;
282
283 if ($option != 'nolink') {
284 // Add param to save lastsearch_values or not
285 $add_save_lastsearch_values = ($save_lastsearch_value == 1 ? 1 : 0);
286 if ($save_lastsearch_value == -1 && isset($_SERVER["PHP_SELF"]) && preg_match('/list\.php/', $_SERVER["PHP_SELF"])) {
287 $add_save_lastsearch_values = 1;
288 }
289 if ($add_save_lastsearch_values) {
290 $url .= '&save_lastsearch_values=1';
291 }
292 }
293
294 $linkclose = '';
295 if (empty($notooltip)) {
296 if (getDolGlobalString('MAIN_OPTIMIZEFORTEXTBROWSER')) {
297 $label = $langs->trans("ShowEmailcollectorAction");
298 $linkclose .= ' alt="'.dol_escape_htmltag($label, 1).'"';
299 }
300 $linkclose .= ' title="'.dol_escape_htmltag($label, 1).'"';
301 $linkclose .= ' class="classfortooltip'.($morecss ? ' '.$morecss : '').'"';
302
303 /*
304 $hookmanager->initHooks(array('emailcollectoractiondao'));
305 $parameters=array('id'=>$this->id);
306 $reshook=$hookmanager->executeHooks('getnomurltooltip',$parameters,$this,$action); // Note that $action and $object may have been modified by some hooks
307 if ($reshook > 0) $linkclose = $hookmanager->resPrint;
308 */
309 } else {
310 $linkclose = ($morecss ? ' class="'.$morecss.'"' : '');
311 }
312
313 $linkstart = '<a href="'.$url.'"';
314 $linkstart .= $linkclose.'>';
315 $linkend = '</a>';
316
317 $result .= $linkstart;
318 if ($withpicto) {
319 $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);
320 }
321 if ($withpicto != 2) {
322 $result .= $this->ref;
323 }
324 $result .= $linkend;
325 //if ($withpicto != 2) $result.=(($addlabel && $this->label) ? $sep . dol_trunc($this->label, ($addlabel > 1 ? $addlabel : 0)) : '');
326
327 global $action, $hookmanager;
328 $hookmanager->initHooks(array('emailcollectoractiondao'));
329 $parameters = array('id' => $this->id, 'getnomurl' => &$result);
330 $reshook = $hookmanager->executeHooks('getNomUrl', $parameters, $this, $action); // Note that $action and $object may have been modified by some hooks
331 if ($reshook > 0) {
332 $result = $hookmanager->resPrint;
333 } else {
334 $result .= $hookmanager->resPrint;
335 }
336
337 return $result;
338 }
339
346 public function getLibStatut($mode = 0)
347 {
348 return $this->LibStatut($this->status, $mode);
349 }
350
351 // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
359 public function LibStatut($status, $mode = 0)
360 {
361 // phpcs:enable
362 if (empty($this->labelStatus)) {
363 global $langs;
364 //$langs->load("emailcollector");
365 $this->labelStatus[1] = $langs->trans('Enabled');
366 $this->labelStatus[0] = $langs->trans('Disabled');
367 }
368
369 if ($mode == 0) {
370 return $this->labelStatus[$status];
371 } elseif ($mode == 1) {
372 return $this->labelStatus[$status];
373 } elseif ($mode == 2) {
374 if ($status == 1) {
375 return img_picto($this->labelStatus[$status], 'statut4', '', false, 0, 0, '', 'valignmiddle').' '.$this->labelStatus[$status];
376 } elseif ($status == 0) {
377 return img_picto($this->labelStatus[$status], 'statut5', '', false, 0, 0, '', 'valignmiddle').' '.$this->labelStatus[$status];
378 }
379 } elseif ($mode == 3) {
380 if ($status == 1) {
381 return img_picto($this->labelStatus[$status], 'statut4', '', false, 0, 0, '', 'valignmiddle');
382 } elseif ($status == 0) {
383 return img_picto($this->labelStatus[$status], 'statut5', '', false, 0, 0, '', 'valignmiddle');
384 }
385 } elseif ($mode == 4) {
386 if ($status == 1) {
387 return img_picto($this->labelStatus[$status], 'statut4', '', false, 0, 0, '', 'valignmiddle').' '.$this->labelStatus[$status];
388 } elseif ($status == 0) {
389 return img_picto($this->labelStatus[$status], 'statut5', '', false, 0, 0, '', 'valignmiddle').' '.$this->labelStatus[$status];
390 }
391 } elseif ($mode == 5) {
392 if ($status == 1) {
393 return $this->labelStatus[$status].' '.img_picto($this->labelStatus[$status], 'statut4', '', false, 0, 0, '', 'valignmiddle');
394 } elseif ($status == 0) {
395 return $this->labelStatus[$status].' '.img_picto($this->labelStatus[$status], 'statut5', '', false, 0, 0, '', 'valignmiddle');
396 }
397 } elseif ($mode == 6) {
398 if ($status == 1) {
399 return $this->labelStatus[$status].' '.img_picto($this->labelStatus[$status], 'statut4', '', false, 0, 0, '', 'valignmiddle');
400 } elseif ($status == 0) {
401 return $this->labelStatus[$status].' '.img_picto($this->labelStatus[$status], 'statut5', '', false, 0, 0, '', 'valignmiddle');
402 }
403 }
404 return "";
405 }
406
413 public function info($id)
414 {
415 $sql = 'SELECT rowid, date_creation as datec, tms as datem,';
416 $sql .= ' fk_user_creat, fk_user_modif';
417 $sql .= ' FROM '.MAIN_DB_PREFIX.$this->table_element.' as t';
418 $sql .= ' WHERE t.rowid = '.((int) $id);
419 $result = $this->db->query($sql);
420 if ($result) {
421 if ($this->db->num_rows($result)) {
422 $obj = $this->db->fetch_object($result);
423
424 $this->id = $obj->rowid;
425
426 $this->user_creation_id = $obj->fk_user_creat;
427 $this->user_modification_id = $obj->fk_user_modif;
428 $this->date_creation = $this->db->jdate($obj->datec);
429 $this->date_modification = empty($obj->datem) ? '' : $this->db->jdate($obj->datem);
430 }
431
432 $this->db->free($result);
433 } else {
434 dol_print_error($this->db);
435 }
436 }
437
444 public function initAsSpecimen()
445 {
446 return $this->initAsSpecimenCommon();
447 }
448}
if( $user->socid > 0) if(! $user->hasRight('accounting', 'chartofaccount')) $object
Definition card.php:58
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...
Definition security.php:626
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
Definition repair.php:139