dolibarr  20.0.0-alpha
partnership_type.class.php
Go to the documentation of this file.
1 <?php
2 /* Copyright (C) 2002 Rodolphe Quiedeville <rodolphe@quiedeville.org>
3  * Copyright (C) 2004-2008 Laurent Destailleur <eldy@users.sourceforge.net>
4  * Copyright (C) 2009-2017 Regis Houssin <regis.houssin@inodbox.com>
5  * Copyright (C) 2016 Charlie Benke <charlie@patas-monkey.com>
6  * Copyright (C) 2018-2019 Thibault Foucart <support@ptibogxiv.net>
7  * Copyright (C) 2021 Waël Almoman <info@almoman.com>
8  * Copyright (C) 2024 Frédéric France <frederic.france@free.fr>
9  * Copyright (C) 2024 MDW <mdeweerd@users.noreply.github.com>
10  *
11  * This program is free software; you can redistribute it and/or modify
12  * it under the terms of the GNU General Public License as published by
13  * the Free Software Foundation; either version 3 of the License, or
14  * (at your option) any later version.
15  *
16  * This program is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19  * GNU General Public License for more details.
20  *
21  * You should have received a copy of the GNU General Public License
22  * along with this program. If not, see <https://www.gnu.org/licenses/>.
23  */
24 
31 require_once DOL_DOCUMENT_ROOT.'/core/class/commonobject.class.php';
32 
33 
38 {
42  public $table_element = 'c_partnership_type';
43 
47  public $element = 'partnership_type';
48 
52  public $picto = 'generic';
53 
58  public $ismultientitymanaged = 1;
59 
63  public $code;
64 
68  public $label;
69 
70  public $active;
71 
72 
73  public $fields = array(
74  'rowid' => array('type' => 'integer', 'label' => 'TechnicalID', 'enabled' => 1, 'visible' => -1, 'notnull' => 1, 'position' => 10),
75  'entity' => array('type' => 'integer', 'label' => 'Entity', 'default' => '1', 'enabled' => 1, 'visible' => -2, 'notnull' => 1, 'position' => 15, 'index' => 1),
76  'code' => array('type' => 'varchar(32)', 'label' => 'Code', 'enabled' => 1, 'visible' => -1, 'notnull' => 1, 'position' => 20),
77  'label' => array('type' => 'varchar(64)', 'label' => 'Label', 'enabled' => 1, 'visible' => -1, 'notnull' => 1, 'position' => 25, 'showoncombobox' => 1),
78  'active' => array('type' => 'integer', 'label' => 'Active', 'enabled' => 1, 'visible' => -1, 'notnull' => 1, 'position' => 30),
79  );
80 
81 
82 
88  public function __construct(DoliDB $db)
89  {
90  global $conf, $langs;
91 
92  $this->db = $db;
93 
94  if (!getDolGlobalString('MAIN_SHOW_TECHNICAL_ID') && isset($this->fields['rowid'])) {
95  $this->fields['rowid']['visible'] = 0;
96  }
97  if (!isModEnabled('multicompany') && isset($this->fields['entity'])) {
98  $this->fields['entity']['enabled'] = 0;
99  }
100 
101  // Example to show how to set values of fields definition dynamically
102  /*if ($user->hasRight('mymodule', 'myobject', 'read')) {
103  $this->fields['myfield']['visible'] = 1;
104  $this->fields['myfield']['noteditable'] = 0;
105  }*/
106 
107  // Unset fields that are disabled
108  foreach ($this->fields as $key => $val) {
109  if (isset($val['enabled']) && empty($val['enabled'])) {
110  unset($this->fields[$key]);
111  }
112  }
113 
114  // Translate some data of arrayofkeyval
115  if (is_object($langs)) {
116  foreach ($this->fields as $key => $val) {
117  if (!empty($val['arrayofkeyval']) && is_array($val['arrayofkeyval'])) {
118  foreach ($val['arrayofkeyval'] as $key2 => $val2) {
119  $this->fields[$key]['arrayofkeyval'][$key2] = $langs->trans($val2);
120  }
121  }
122  }
123  }
124  }
125 
133  public function create(User $user, $notrigger = 0)
134  {
135  $resultcreate = $this->createCommon($user, $notrigger);
136  return $resultcreate;
137  }
138 
146  public function fetch($id, $ref = null)
147  {
148  $result = $this->fetchCommon($id, $ref);
149  return $result;
150  }
151 
164  public function fetchAll($sortorder = '', $sortfield = '', $limit = 0, $offset = 0, $filter = '', $filtermode = 'AND')
165  {
166  global $conf;
167 
168  dol_syslog(__METHOD__, LOG_DEBUG);
169 
170  $records = array();
171 
172  $sql = "SELECT ";
173  $sql .= $this->getFieldList('t');
174  $sql .= " FROM ".MAIN_DB_PREFIX.$this->table_element." as t";
175  if (isset($this->ismultientitymanaged) && $this->ismultientitymanaged == 1) {
176  $sql .= " WHERE t.entity IN (".getEntity($this->element).")";
177  } else {
178  $sql .= " WHERE 1 = 1";
179  }
180 
181  // Manage filter
182  $errormessage = '';
183  $sql .= forgeSQLFromUniversalSearchCriteria($filter, $errormessage);
184  if ($errormessage) {
185  $this->errors[] = $errormessage;
186  dol_syslog(__METHOD__.' '.implode(',', $this->errors), LOG_ERR);
187  return -1;
188  }
189 
190  if (!empty($sortfield)) {
191  $sql .= $this->db->order($sortfield, $sortorder);
192  }
193  if (!empty($limit)) {
194  $sql .= $this->db->plimit($limit, $offset);
195  }
196 
197  $resql = $this->db->query($sql);
198  if ($resql) {
199  $num = $this->db->num_rows($resql);
200  $i = 0;
201  while ($i < ($limit ? min($limit, $num) : $num)) {
202  $obj = $this->db->fetch_object($resql);
203 
204  $record = new self($this->db);
205  $record->setVarsFromFetchObj($obj);
206 
207  $records[$record->id] = $record;
208 
209  $i++;
210  }
211  $this->db->free($resql);
212 
213  return $records;
214  } else {
215  $this->errors[] = 'Error '.$this->db->lasterror();
216  dol_syslog(__METHOD__.' '.implode(',', $this->errors), LOG_ERR);
217 
218  return -1;
219  }
220  }
221 
229  public function update(User $user, $notrigger = 0)
230  {
231  return $this->updateCommon($user, $notrigger);
232  }
233 
241  public function delete(User $user, $notrigger = 0)
242  {
243  return $this->deleteCommon($user, $notrigger);
244  }
245 
256  public function getNomUrl($withpicto = 0, $option = '', $notooltip = 0, $morecss = '', $save_lastsearch_value = -1)
257  {
258  global $conf, $langs, $hookmanager;
259 
260  if (!empty($conf->dol_no_mouse_hover)) {
261  $notooltip = 1; // Force disable tooltips
262  }
263 
264  $result = '';
265 
266  $label = img_picto('', $this->picto).' <u>'.$langs->trans("PartnershipType").'</u>';
267  if (isset($this->status)) {
268  $label .= ' '.$this->getLibStatut(5);
269  }
270  $label .= '<br>';
271  $label .= '<b>'.$langs->trans('Code').':</b> '.$this->code;
272  $label .= '<br><b>'.$langs->trans('Label').':</b> '.$this->label;
273 
274  //$url = dol_buildpath('/partnership/partnership_card.php', 1).'?id='.$this->id;
275  $url = '';
276 
277  if ($option != 'nolink') {
278  // Add param to save lastsearch_values or not
279  $add_save_lastsearch_values = ($save_lastsearch_value == 1 ? 1 : 0);
280  if ($save_lastsearch_value == -1 && isset($_SERVER["PHP_SELF"]) && preg_match('/list\.php/', $_SERVER["PHP_SELF"])) {
281  $add_save_lastsearch_values = 1;
282  }
283  if ($url && $add_save_lastsearch_values) {
284  $url .= '&save_lastsearch_values=1';
285  }
286  }
287 
288  $linkclose = '';
289  if (empty($notooltip)) {
290  if (getDolGlobalString('MAIN_OPTIMIZEFORTEXTBROWSER')) {
291  $label = $langs->trans("ShowMyObject");
292  $linkclose .= ' alt="'.dol_escape_htmltag($label, 1).'"';
293  }
294  $linkclose .= ' title="'.dol_escape_htmltag($label, 1).'"';
295  $linkclose .= ' class="classfortooltip'.($morecss ? ' '.$morecss : '').'"';
296  } else {
297  $linkclose = ($morecss ? ' class="'.$morecss.'"' : '');
298  }
299 
300  if ($option == 'nolink' || empty($url)) {
301  $linkstart = '<span';
302  } else {
303  $linkstart = '<a href="'.$url.'"';
304  }
305  $linkstart .= $linkclose.'>';
306  if ($option == 'nolink' || empty($url)) {
307  $linkend = '</span>';
308  } else {
309  $linkend = '</a>';
310  }
311 
312  $result .= $linkstart;
313 
314  if (empty($this->showphoto_on_popup)) {
315  if ($withpicto) {
316  $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);
317  }
318  } else {
319  if ($withpicto) {
320  require_once DOL_DOCUMENT_ROOT.'/core/lib/files.lib.php';
321 
322  list($class, $module) = explode('@', $this->picto);
323  $upload_dir = $conf->$module->multidir_output[$conf->entity]."/$class/".dol_sanitizeFileName($this->ref);
324  $filearray = dol_dir_list($upload_dir, "files");
325  $filename = $filearray[0]['name'];
326  if (!empty($filename)) {
327  $pospoint = strpos($filearray[0]['name'], '.');
328 
329  $pathtophoto = $class.'/'.$this->ref.'/thumbs/'.substr($filename, 0, $pospoint).'_mini'.substr($filename, $pospoint);
330  if (!getDolGlobalString(strtoupper($module.'_'.$class).'_FORMATLISTPHOTOSASUSERS')) {
331  $result .= '<div class="floatleft inline-block valignmiddle divphotoref"><div class="photoref"><img class="photo'.$module.'" alt="No photo" border="0" src="'.DOL_URL_ROOT.'/viewimage.php?modulepart='.$module.'&entity='.$conf->entity.'&file='.urlencode($pathtophoto).'"></div></div>';
332  } else {
333  $result .= '<div class="floatleft inline-block valignmiddle divphotoref"><img class="photouserphoto userphoto" alt="No photo" border="0" src="'.DOL_URL_ROOT.'/viewimage.php?modulepart='.$module.'&entity='.$conf->entity.'&file='.urlencode($pathtophoto).'"></div>';
334  }
335 
336  $result .= '</div>';
337  } else {
338  $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);
339  }
340  }
341  }
342 
343  if ($withpicto != 2) {
344  $result .= $this->ref;
345  }
346 
347  $result .= $linkend;
348  //if ($withpicto != 2) $result.=(($addlabel && $this->label) ? $sep . dol_trunc($this->label, ($addlabel > 1 ? $addlabel : 0)) : '');
349 
350  global $action, $hookmanager;
351  $hookmanager->initHooks(array('myobjectdao'));
352  $parameters = array('id' => $this->id, 'getnomurl' => &$result);
353  $reshook = $hookmanager->executeHooks('getNomUrl', $parameters, $this, $action); // Note that $action and $object may have been modified by some hooks
354  if ($reshook > 0) {
355  $result = $hookmanager->resPrint;
356  } else {
357  $result .= $hookmanager->resPrint;
358  }
359 
360  return $result;
361  }
362 
369  public function getLibStatut($mode = 0)
370  {
371  return '';
372  }
373 
380  public function info($id)
381  {
382  $sql = "SELECT rowid, date_creation as datec, tms as datem,";
383  $sql .= " fk_user_creat, fk_user_modif";
384  $sql .= " FROM ".MAIN_DB_PREFIX.$this->table_element." as t";
385  $sql .= " WHERE t.rowid = ".((int) $id);
386 
387  $result = $this->db->query($sql);
388  if ($result) {
389  if ($this->db->num_rows($result)) {
390  $obj = $this->db->fetch_object($result);
391 
392  $this->id = $obj->rowid;
393 
394  $this->user_creation_id = $obj->fk_user_creat;
395  $this->user_modification_id = $obj->fk_user_modif;
396  $this->date_creation = $this->db->jdate($obj->datec);
397  $this->date_modification = empty($obj->datem) ? '' : $this->db->jdate($obj->datem);
398  }
399 
400  $this->db->free($result);
401  } else {
402  dol_print_error($this->db);
403  }
404  }
405 
412  public function initAsSpecimen()
413  {
414  // Set here init that are not commonf fields
415  // $this->property1 = ...
416  // $this->property2 = ...
417 
418  return $this->initAsSpecimenCommon();
419  }
420 }
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:604
$object ref
Definition: info.php:79
Parent class of all other business classes (invoices, contracts, proposals, orders,...
createCommon(User $user, $notrigger=0)
Create object into database.
getFieldList($alias='', $excludefields=array())
Function to concat keys of fields.
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 to manage partnership type.
initAsSpecimen()
Initialise object with example values Id must be 0 if object instance is a specimen.
getLibStatut($mode=0)
Return the label of the status.
__construct(DoliDB $db)
Constructor.
getNomUrl($withpicto=0, $option='', $notooltip=0, $morecss='', $save_lastsearch_value=-1)
Return a link to the object card (with optionally the picto)
fetch($id, $ref=null)
Load object in memory from the database.
update(User $user, $notrigger=0)
Update object into database.
info($id)
Load the info information in the object.
create(User $user, $notrigger=0)
Create object into database.
fetchAll($sortorder='', $sortfield='', $limit=0, $offset=0, $filter='', $filtermode='AND')
Load list of objects in memory from the database.
Class to manage Dolibarr users.
Definition: user.class.php:50
if(isModEnabled('invoice') && $user->hasRight('facture', 'lire')) if((isModEnabled('fournisseur') &&!getDolGlobalString('MAIN_USE_NEW_SUPPLIERMOD') && $user->hasRight("fournisseur", "facture", "lire"))||(isModEnabled('supplier_invoice') && $user->hasRight("supplier_invoice", "lire"))) if(isModEnabled('don') && $user->hasRight('don', 'lire')) if(isModEnabled('tax') && $user->hasRight('tax', 'charges', 'lire')) if(isModEnabled('invoice') &&isModEnabled('order') && $user->hasRight("commande", "lire") &&!getDolGlobalString('WORKFLOW_DISABLE_CREATE_INVOICE_FROM_ORDER')) $sql
Social contributions to pay.
Definition: index.php:744
dol_dir_list($utf8_path, $types="all", $recursive=0, $filter="", $excludefilter=null, $sortcriteria="name", $sortorder=SORT_ASC, $mode=0, $nohook=0, $relativename="", $donotfollowsymlinks=0, $nbsecondsold=0)
Scan a directory and return a list of files/directories.
Definition: files.lib.php:63
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)
forgeSQLFromUniversalSearchCriteria($filter, &$errorstr='', $noand=0, $nopar=0, $noerror=0)
forgeSQLFromUniversalSearchCriteria
dol_sanitizeFileName($str, $newstr='_', $unaccent=1)
Clean a string to use it as a file name.
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.
isModEnabled($module)
Is Dolibarr module enabled.
dol_syslog($message, $level=LOG_INFO, $ident=0, $suffixinfilename='', $restricttologhandler='', $logcontext=null)
Write log message into outputs.