| Total Complexity | 103 |
| Total Lines | 650 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
Complex classes like AccountingAccount often do a lot of different things. To break such a class down, we need to identify a cohesive component within that class. A common approach to find such a component is to look for fields/methods that share the same prefixes, or suffixes.
Once you have determined the fields that belong together, you can apply the Extract Class refactoring. If the component makes sense as a sub-class, Extract Subclass is also a candidate, and is often faster.
While breaking up the class, it is a good idea to analyze how other classes use AccountingAccount, and based on these observations, apply Extract Interface, too.
| 1 | <?php |
||
| 32 | class AccountingAccount extends CommonObject |
||
| 33 | { |
||
| 34 | /** |
||
| 35 | * @var string Name of element |
||
| 36 | */ |
||
| 37 | public $element='accounting_account'; |
||
| 38 | |||
| 39 | /** |
||
| 40 | * @var string Name of table without prefix where object is stored |
||
| 41 | */ |
||
| 42 | public $table_element='accounting_account'; |
||
| 43 | |||
| 44 | /** |
||
| 45 | * @var string String with name of icon for myobject. Must be the part after the 'object_' into object_myobject.png |
||
| 46 | */ |
||
| 47 | public $picto = 'billr'; |
||
| 48 | |||
| 49 | /** |
||
| 50 | * 0=No test on entity, 1=Test with field entity, 2=Test with link by societe |
||
| 51 | * @var int |
||
| 52 | */ |
||
| 53 | public $ismultientitymanaged = 1; |
||
| 54 | |||
| 55 | /** |
||
| 56 | * 0=Default, 1=View may be restricted to sales representative only if no permission to see all or to company of external user if external user |
||
| 57 | * @var integer |
||
| 58 | */ |
||
| 59 | public $restrictiononfksoc = 1; |
||
| 60 | |||
| 61 | /** |
||
| 62 | * @var DoliDB Database handler. |
||
| 63 | */ |
||
| 64 | public $db; |
||
| 65 | |||
| 66 | /** |
||
| 67 | * @var int ID |
||
| 68 | */ |
||
| 69 | public $id; |
||
| 70 | |||
| 71 | /** |
||
| 72 | * @var int ID |
||
| 73 | */ |
||
| 74 | public $rowid; |
||
| 75 | |||
| 76 | /** |
||
| 77 | * Date creation record (datec) |
||
| 78 | * |
||
| 79 | * @var integer |
||
| 80 | */ |
||
| 81 | public $datec; |
||
| 82 | |||
| 83 | /** |
||
| 84 | * @var string pcg version |
||
| 85 | */ |
||
| 86 | public $fk_pcg_version; |
||
| 87 | |||
| 88 | /** |
||
| 89 | * @var string pcg type |
||
| 90 | */ |
||
| 91 | public $pcg_type; |
||
| 92 | |||
| 93 | /** |
||
| 94 | * @var string pcg subtype |
||
| 95 | */ |
||
| 96 | public $pcg_subtype; |
||
| 97 | |||
| 98 | /** |
||
| 99 | * @var string account number |
||
| 100 | */ |
||
| 101 | public $account_number; |
||
| 102 | |||
| 103 | /** |
||
| 104 | * @var int ID parent account |
||
| 105 | */ |
||
| 106 | public $account_parent; |
||
| 107 | |||
| 108 | /** |
||
| 109 | * @var int ID category account |
||
| 110 | */ |
||
| 111 | public $account_category; |
||
| 112 | |||
| 113 | /** |
||
| 114 | * @var int Status |
||
| 115 | */ |
||
| 116 | public $status; |
||
| 117 | |||
| 118 | /** |
||
| 119 | * @var string Label of account |
||
| 120 | */ |
||
| 121 | public $label; |
||
| 122 | |||
| 123 | /** |
||
| 124 | * @var int ID |
||
| 125 | */ |
||
| 126 | public $fk_user_author; |
||
| 127 | |||
| 128 | /** |
||
| 129 | * @var int ID |
||
| 130 | */ |
||
| 131 | public $fk_user_modif; |
||
| 132 | |||
| 133 | /** |
||
| 134 | * @var int active (duplicate with status) |
||
| 135 | */ |
||
| 136 | public $active; |
||
| 137 | |||
| 138 | /** |
||
| 139 | * Constructor |
||
| 140 | * |
||
| 141 | * @param DoliDB $db Database handle |
||
| 142 | */ |
||
| 143 | public function __construct($db) |
||
| 144 | { |
||
| 145 | global $conf; |
||
| 146 | |||
| 147 | $this->db = $db; |
||
| 148 | $this->next_prev_filter='fk_pcg_version IN (SELECT pcg_version FROM ' . MAIN_DB_PREFIX . 'accounting_system WHERE rowid=' . $conf->global->CHARTOFACCOUNTS . ')'; // Used to add a filter in Form::showrefnav method |
||
| 149 | } |
||
| 150 | |||
| 151 | /** |
||
| 152 | * Load record in memory |
||
| 153 | * |
||
| 154 | * @param int $rowid Id |
||
| 155 | * @param string $account_number Account number |
||
| 156 | * @param int|boolean $limittocurrentchart 1 or true=Load record only if it is into current active char of account |
||
| 157 | * @param string $limittoachartaccount 'ABC'=Load record only if it is into chart account with code 'ABC'. |
||
| 158 | * @return int <0 if KO, 0 if not found, Id of record if OK and found |
||
| 159 | */ |
||
| 160 | public function fetch($rowid = null, $account_number = null, $limittocurrentchart = 0, $limittoachartaccount = '') |
||
| 216 | } |
||
| 217 | |||
| 218 | /** |
||
| 219 | * Insert new accounting account in chart of accounts |
||
| 220 | * |
||
| 221 | * @param User $user User making action |
||
| 222 | * @param int $notrigger Disable triggers |
||
| 223 | * @return int <0 if KO, >0 if OK |
||
| 224 | */ |
||
| 225 | public function create($user, $notrigger = 0) |
||
| 226 | { |
||
| 227 | global $conf; |
||
| 228 | $error = 0; |
||
| 229 | $now = dol_now(); |
||
| 230 | |||
| 231 | // Clean parameters |
||
| 232 | if (isset($this->fk_pcg_version)) |
||
| 233 | $this->fk_pcg_version = trim($this->fk_pcg_version); |
||
| 234 | if (isset($this->pcg_type)) |
||
| 235 | $this->pcg_type = trim($this->pcg_type); |
||
| 236 | if (isset($this->pcg_subtype)) |
||
| 237 | $this->pcg_subtype = trim($this->pcg_subtype); |
||
| 238 | if (isset($this->account_number)) |
||
| 239 | $this->account_number = trim($this->account_number); |
||
| 240 | if (isset($this->label)) |
||
| 241 | $this->label = trim($this->label); |
||
| 242 | |||
| 243 | if (empty($this->pcg_type) || $this->pcg_type == '-1') |
||
| 244 | { |
||
| 245 | $this->pcg_type = 'XXXXXX'; |
||
| 246 | } |
||
| 247 | if (empty($this->pcg_subtype) || $this->pcg_subtype == '-1') |
||
| 248 | { |
||
| 249 | $this->pcg_subtype = 'XXXXXX'; |
||
| 250 | } |
||
| 251 | // Check parameters |
||
| 252 | // Put here code to add control on parameters values |
||
| 253 | |||
| 254 | // Insert request |
||
| 255 | $sql = "INSERT INTO " . MAIN_DB_PREFIX . "accounting_account("; |
||
| 256 | $sql .= "datec"; |
||
| 257 | $sql .= ", entity"; |
||
| 258 | $sql .= ", fk_pcg_version"; |
||
| 259 | $sql .= ", pcg_type"; |
||
| 260 | $sql .= ", pcg_subtype"; |
||
| 261 | $sql .= ", account_number"; |
||
| 262 | $sql .= ", account_parent"; |
||
| 263 | $sql .= ", label"; |
||
| 264 | $sql .= ", fk_accounting_category"; |
||
| 265 | $sql .= ", fk_user_author"; |
||
| 266 | $sql .= ", active"; |
||
| 267 | $sql .= ") VALUES ("; |
||
| 268 | $sql .= " '" . $this->db->idate($now) . "'"; |
||
| 269 | $sql .= ", " . $conf->entity; |
||
| 270 | $sql .= ", " . (empty($this->fk_pcg_version) ? 'NULL' : "'" . $this->db->escape($this->fk_pcg_version) . "'"); |
||
| 271 | $sql .= ", " . (empty($this->pcg_type) ? 'NULL' : "'" . $this->db->escape($this->pcg_type) . "'"); |
||
| 272 | $sql .= ", " . (empty($this->pcg_subtype) ? 'NULL' : "'" . $this->db->escape($this->pcg_subtype) . "'"); |
||
| 273 | $sql .= ", " . (empty($this->account_number) ? 'NULL' : "'" . $this->db->escape($this->account_number) . "'"); |
||
| 274 | $sql .= ", " . (empty($this->account_parent) ? 0 : (int) $this->account_parent); |
||
| 275 | $sql .= ", " . (empty($this->label) ? "''" : "'" . $this->db->escape($this->label) . "'"); |
||
| 276 | $sql .= ", " . (empty($this->account_category) ? 0 : (int) $this->account_category); |
||
| 277 | $sql .= ", " . $user->id; |
||
| 278 | $sql .= ", " . (int) $this->active; |
||
| 279 | $sql .= ")"; |
||
| 280 | |||
| 281 | $this->db->begin(); |
||
| 282 | |||
| 283 | dol_syslog(get_class($this) . "::create sql=" . $sql, LOG_DEBUG); |
||
| 284 | $resql = $this->db->query($sql); |
||
| 285 | if (! $resql) { |
||
| 286 | $error++; |
||
| 287 | $this->errors[] = "Error " . $this->db->lasterror(); |
||
| 288 | } |
||
| 289 | |||
| 290 | if (! $error) { |
||
| 291 | $this->id = $this->db->last_insert_id(MAIN_DB_PREFIX . "accounting_account"); |
||
| 292 | |||
| 293 | // if (! $notrigger) { |
||
| 294 | // Uncomment this and change MYOBJECT to your own tag if you |
||
| 295 | // want this action calls a trigger. |
||
| 296 | |||
| 297 | // // Call triggers |
||
| 298 | // include_once DOL_DOCUMENT_ROOT . '/core/class/interfaces.class.php'; |
||
| 299 | // $interface=new Interfaces($this->db); |
||
| 300 | // $result=$interface->run_triggers('MYOBJECT_CREATE',$this,$user,$langs,$conf); |
||
| 301 | // if ($result < 0) { $error++; $this->errors=$interface->errors; } |
||
| 302 | // // End call triggers |
||
| 303 | // } |
||
| 304 | } |
||
| 305 | |||
| 306 | // Commit or rollback |
||
| 307 | if ($error) { |
||
| 308 | foreach ($this->errors as $errmsg) { |
||
| 309 | dol_syslog(get_class($this) . "::create " . $errmsg, LOG_ERR); |
||
| 310 | $this->error .= ($this->error ? ', ' . $errmsg : $errmsg); |
||
| 311 | } |
||
| 312 | $this->db->rollback(); |
||
| 313 | return -1 * $error; |
||
| 314 | } else { |
||
| 315 | $this->db->commit(); |
||
| 316 | return $this->id; |
||
| 317 | } |
||
| 318 | } |
||
| 319 | |||
| 320 | /** |
||
| 321 | * Update record |
||
| 322 | * |
||
| 323 | * @param User $user Use making update |
||
| 324 | * @return int <0 if KO, >0 if OK |
||
| 325 | */ |
||
| 326 | public function update($user) |
||
| 327 | { |
||
| 328 | // Check parameters |
||
| 329 | if (empty($this->pcg_type) || $this->pcg_type == '-1') |
||
| 330 | { |
||
| 331 | $this->pcg_type = 'XXXXXX'; |
||
| 332 | } |
||
| 333 | if (empty($this->pcg_subtype) || $this->pcg_subtype == '-1') |
||
| 334 | { |
||
| 335 | $this->pcg_subtype = 'XXXXXX'; |
||
| 336 | } |
||
| 337 | |||
| 338 | $this->db->begin(); |
||
| 339 | |||
| 340 | $sql = "UPDATE " . MAIN_DB_PREFIX . "accounting_account "; |
||
| 341 | $sql .= " SET fk_pcg_version = " . ($this->fk_pcg_version ? "'" . $this->db->escape($this->fk_pcg_version) . "'" : "null"); |
||
| 342 | $sql .= " , pcg_type = " . ($this->pcg_type ? "'" . $this->db->escape($this->pcg_type) . "'" : "null"); |
||
| 343 | $sql .= " , pcg_subtype = " . ($this->pcg_subtype ? "'" . $this->db->escape($this->pcg_subtype) . "'" : "null"); |
||
| 344 | $sql .= " , account_number = '" . $this->db->escape($this->account_number) . "'"; |
||
| 345 | $sql .= " , account_parent = " . (int) $this->account_parent; |
||
| 346 | $sql .= " , label = " . ($this->label ? "'" . $this->db->escape($this->label) . "'" : "''"); |
||
| 347 | $sql .= " , fk_accounting_category = " . (empty($this->account_category) ? 0 : (int) $this->account_category); |
||
| 348 | $sql .= " , fk_user_modif = " . $user->id; |
||
| 349 | $sql .= " , active = " . (int) $this->active; |
||
| 350 | $sql .= " WHERE rowid = " . $this->id; |
||
| 351 | |||
| 352 | dol_syslog(get_class($this) . "::update sql=" . $sql, LOG_DEBUG); |
||
| 353 | $result = $this->db->query($sql); |
||
| 354 | if ($result) { |
||
| 355 | $this->db->commit(); |
||
| 356 | return 1; |
||
| 357 | } else { |
||
| 358 | $this->error = $this->db->lasterror(); |
||
| 359 | $this->db->rollback(); |
||
| 360 | return - 1; |
||
| 361 | } |
||
| 362 | } |
||
| 363 | |||
| 364 | /** |
||
| 365 | * Check usage of accounting code |
||
| 366 | * |
||
| 367 | * @return int <0 if KO, >0 if OK |
||
| 368 | */ |
||
| 369 | public function checkUsage() |
||
| 370 | { |
||
| 371 | global $langs; |
||
| 372 | |||
| 373 | $sql = "(SELECT fk_code_ventilation FROM " . MAIN_DB_PREFIX . "facturedet"; |
||
| 374 | $sql.= " WHERE fk_code_ventilation=" . $this->id . ")"; |
||
| 375 | $sql.= "UNION"; |
||
| 376 | $sql.= " (SELECT fk_code_ventilation FROM " . MAIN_DB_PREFIX . "facture_fourn_det"; |
||
| 377 | $sql.= " WHERE fk_code_ventilation=" . $this->id . ")"; |
||
| 378 | |||
| 379 | dol_syslog(get_class($this) . "::checkUsage sql=" . $sql, LOG_DEBUG); |
||
| 380 | $resql = $this->db->query($sql); |
||
| 381 | |||
| 382 | if ($resql) { |
||
| 383 | $num = $this->db->num_rows($resql); |
||
| 384 | if ($num > 0) { |
||
| 385 | $this->error = $langs->trans('ErrorAccountancyCodeIsAlreadyUse'); |
||
| 386 | return 0; |
||
| 387 | } else { |
||
| 388 | return 1; |
||
| 389 | } |
||
| 390 | } else { |
||
| 391 | $this->error = $this->db->lasterror(); |
||
| 392 | return - 1; |
||
| 393 | } |
||
| 394 | } |
||
| 395 | |||
| 396 | /** |
||
| 397 | * Delete object in database |
||
| 398 | * |
||
| 399 | * @param User $user User that deletes |
||
| 400 | * @param int $notrigger 0=triggers after, 1=disable triggers |
||
| 401 | * @return int <0 if KO, >0 if OK |
||
| 402 | */ |
||
| 403 | public function delete($user, $notrigger = 0) |
||
| 404 | { |
||
| 405 | $error = 0; |
||
| 406 | |||
| 407 | $result = $this->checkUsage(); |
||
| 408 | |||
| 409 | if ($result > 0) { |
||
| 410 | |||
| 411 | $this->db->begin(); |
||
| 412 | |||
| 413 | // if (! $error) { |
||
| 414 | // if (! $notrigger) { |
||
| 415 | // Uncomment this and change MYOBJECT to your own tag if you |
||
| 416 | // want this action calls a trigger. |
||
| 417 | |||
| 418 | // // Call triggers |
||
| 419 | // include_once DOL_DOCUMENT_ROOT . '/core/class/interfaces.class.php'; |
||
| 420 | // $interface=new Interfaces($this->db); |
||
| 421 | // $result=$interface->run_triggers('ACCOUNTANCY_ACCOUNT_DELETE',$this,$user,$langs,$conf); |
||
| 422 | // if ($result < 0) { $error++; $this->errors=$interface->errors; } |
||
| 423 | // // End call triggers |
||
| 424 | // } |
||
| 425 | // } |
||
| 426 | |||
| 427 | if (! $error) { |
||
| 428 | $sql = "DELETE FROM " . MAIN_DB_PREFIX . "accounting_account"; |
||
| 429 | $sql .= " WHERE rowid=" . $this->id; |
||
| 430 | |||
| 431 | dol_syslog(get_class($this) . "::delete sql=" . $sql); |
||
| 432 | $resql = $this->db->query($sql); |
||
| 433 | if (! $resql) { |
||
| 434 | $error ++; |
||
| 435 | $this->errors[] = "Error " . $this->db->lasterror(); |
||
| 436 | } |
||
| 437 | } |
||
| 438 | |||
| 439 | // Commit or rollback |
||
| 440 | if ($error) { |
||
| 441 | foreach ($this->errors as $errmsg) { |
||
| 442 | dol_syslog(get_class($this) . "::delete " . $errmsg, LOG_ERR); |
||
| 443 | $this->error .= ($this->error ? ', ' . $errmsg : $errmsg); |
||
| 444 | } |
||
| 445 | $this->db->rollback(); |
||
| 446 | return - 1 * $error; |
||
| 447 | } else { |
||
| 448 | $this->db->commit(); |
||
| 449 | return 1; |
||
| 450 | } |
||
| 451 | } else { |
||
| 452 | return - 1; |
||
| 453 | } |
||
| 454 | } |
||
| 455 | |||
| 456 | /** |
||
| 457 | * Return clicable name (with picto eventually) |
||
| 458 | * |
||
| 459 | * @param int $withpicto 0=No picto, 1=Include picto into link, 2=Only picto |
||
| 460 | * @param int $withlabel 0=No label, 1=Include label of account |
||
| 461 | * @param int $nourl 1=Disable url |
||
| 462 | * @param string $moretitle Add more text to title tooltip |
||
| 463 | * @param int $notooltip 1=Disable tooltip |
||
| 464 | * @param int $save_lastsearch_value -1=Auto, 0=No save of lastsearch_values when clicking, 1=Save lastsearch_values whenclicking |
||
| 465 | * @return string String with URL |
||
| 466 | */ |
||
| 467 | public function getNomUrl($withpicto = 0, $withlabel = 0, $nourl = 0, $moretitle = '', $notooltip = 0, $save_lastsearch_value = -1) |
||
| 468 | { |
||
| 469 | global $langs, $conf, $user; |
||
| 470 | require_once DOL_DOCUMENT_ROOT.'/core/lib/accounting.lib.php'; |
||
| 471 | |||
| 472 | if (! empty($conf->dol_no_mouse_hover)) $notooltip=1; // Force disable tooltips |
||
| 473 | |||
| 474 | $result = ''; |
||
| 475 | |||
| 476 | $url = DOL_URL_ROOT . '/accountancy/admin/card.php?id=' . $this->id; |
||
| 477 | |||
| 478 | // Add param to save lastsearch_values or not |
||
| 479 | $add_save_lastsearch_values=($save_lastsearch_value == 1 ? 1 : 0); |
||
| 480 | if ($save_lastsearch_value == -1 && preg_match('/list\.php/', $_SERVER["PHP_SELF"])) $add_save_lastsearch_values=1; |
||
| 481 | if ($add_save_lastsearch_values) $url.='&save_lastsearch_values=1'; |
||
| 482 | |||
| 483 | $picto = 'billr'; |
||
| 484 | $label=''; |
||
| 485 | |||
| 486 | $label = '<u>' . $langs->trans("ShowAccountingAccount") . '</u>'; |
||
| 487 | if (! empty($this->account_number)) |
||
| 488 | $label .= '<br><b>'.$langs->trans('AccountAccounting') . ':</b> ' . length_accountg($this->account_number); |
||
| 489 | if (! empty($this->label)) |
||
| 490 | $label .= '<br><b>'.$langs->trans('Label') . ':</b> ' . $this->label; |
||
| 491 | if ($moretitle) $label.=' - '.$moretitle; |
||
| 492 | |||
| 493 | $linkclose=''; |
||
| 494 | if (empty($notooltip)) |
||
| 495 | { |
||
| 496 | if (! empty($conf->global->MAIN_OPTIMIZEFORTEXTBROWSER)) |
||
| 497 | { |
||
| 498 | $label=$langs->trans("ShowAccoutingAccount"); |
||
| 499 | $linkclose.=' alt="'.dol_escape_htmltag($label, 1).'"'; |
||
| 500 | } |
||
| 501 | $linkclose.= ' title="'.dol_escape_htmltag($label, 1).'"'; |
||
| 502 | $linkclose.=' class="classfortooltip"'; |
||
| 503 | } |
||
| 504 | |||
| 505 | $linkstart='<a href="'.$url.'"'; |
||
| 506 | $linkstart.=$linkclose.'>'; |
||
| 507 | $linkend='</a>'; |
||
| 508 | |||
| 509 | if ($nourl) |
||
| 510 | { |
||
| 511 | $linkstart = ''; |
||
| 512 | $linkclose = ''; |
||
| 513 | $linkend = ''; |
||
| 514 | } |
||
| 515 | |||
| 516 | $label_link = length_accountg($this->account_number); |
||
| 517 | if ($withlabel) $label_link .= ' - ' . $this->label; |
||
| 518 | |||
| 519 | if ($withpicto) $result.=($linkstart.img_object(($notooltip?'':$label), $picto, ($notooltip?'':'class="classfortooltip"'), 0, 0, $notooltip?0:1).$linkend); |
||
| 520 | if ($withpicto && $withpicto != 2) $result .= ' '; |
||
| 521 | if ($withpicto != 2) $result.=$linkstart . $label_link . $linkend; |
||
| 522 | return $result; |
||
| 523 | } |
||
| 524 | |||
| 525 | /** |
||
| 526 | * Information on record |
||
| 527 | * |
||
| 528 | * @param int $id of record |
||
| 529 | * @return void |
||
| 530 | */ |
||
| 531 | public function info($id) |
||
| 532 | { |
||
| 533 | $sql = 'SELECT a.rowid, a.datec, a.fk_user_author, a.fk_user_modif, a.tms'; |
||
| 534 | $sql .= ' FROM ' . MAIN_DB_PREFIX . 'accounting_account as a'; |
||
| 535 | $sql .= ' WHERE a.rowid = ' . $id; |
||
| 536 | |||
| 537 | dol_syslog(get_class($this) . '::info sql=' . $sql); |
||
| 538 | $result = $this->db->query($sql); |
||
| 539 | |||
| 540 | if ($result) { |
||
| 541 | if ($this->db->num_rows($result)) { |
||
| 542 | $obj = $this->db->fetch_object($result); |
||
| 543 | $this->id = $obj->rowid; |
||
| 544 | if ($obj->fk_user_author) { |
||
| 545 | $cuser = new User($this->db); |
||
| 546 | $cuser->fetch($obj->fk_user_author); |
||
| 547 | $this->user_creation = $cuser; |
||
| 548 | } |
||
| 549 | if ($obj->fk_user_modif) { |
||
| 550 | $muser = new User($this->db); |
||
| 551 | $muser->fetch($obj->fk_user_modif); |
||
| 552 | $this->user_modification = $muser; |
||
| 553 | } |
||
| 554 | $this->date_creation = $this->db->jdate($obj->datec); |
||
| 555 | $this->date_modification = $this->db->jdate($obj->tms); |
||
| 556 | } |
||
| 557 | $this->db->free($result); |
||
| 558 | } else { |
||
| 559 | dol_print_error($this->db); |
||
| 560 | } |
||
| 561 | } |
||
| 562 | |||
| 563 | // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps |
||
| 564 | /** |
||
| 565 | * Account deactivated |
||
| 566 | * |
||
| 567 | * @param int $id Id |
||
| 568 | * @return int <0 if KO, >0 if OK |
||
| 569 | */ |
||
| 570 | public function account_desactivate($id) |
||
| 595 | } |
||
| 596 | } |
||
| 597 | |||
| 598 | // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps |
||
| 599 | /** |
||
| 600 | * Account activated |
||
| 601 | * |
||
| 602 | * @param int $id Id |
||
| 603 | * @return int <0 if KO, >0 if OK |
||
| 604 | */ |
||
| 605 | public function account_activate($id) |
||
| 606 | { |
||
| 607 | // phpcs:enable |
||
| 608 | $this->db->begin(); |
||
| 609 | |||
| 610 | $sql = "UPDATE " . MAIN_DB_PREFIX . "accounting_account "; |
||
| 611 | $sql .= "SET active = '1'"; |
||
| 612 | $sql .= " WHERE rowid = " . $this->db->escape($id); |
||
| 613 | |||
| 614 | dol_syslog(get_class($this) . "::activate sql=" . $sql, LOG_DEBUG); |
||
| 615 | $result = $this->db->query($sql); |
||
| 616 | if ($result) { |
||
| 617 | $this->db->commit(); |
||
| 618 | return 1; |
||
| 619 | } else { |
||
| 620 | $this->error = $this->db->lasterror(); |
||
| 621 | $this->db->rollback(); |
||
| 622 | return - 1; |
||
| 623 | } |
||
| 624 | } |
||
| 625 | |||
| 626 | |||
| 627 | /** |
||
| 628 | * Retourne le libelle du statut d'un user (actif, inactif) |
||
| 629 | * |
||
| 630 | * @param int $mode 0=libelle long, 1=libelle court, 2=Picto + Libelle court, 3=Picto, 4=Picto + Libelle long, 5=Libelle court + Picto |
||
| 631 | * @return string Label of status |
||
| 632 | */ |
||
| 633 | public function getLibStatut($mode = 0) |
||
| 634 | { |
||
| 635 | return $this->LibStatut($this->status, $mode); |
||
| 636 | } |
||
| 637 | |||
| 638 | // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps |
||
| 639 | /** |
||
| 640 | * Renvoi le libelle d'un statut donne |
||
| 641 | * |
||
| 642 | * @param int $statut Id statut |
||
| 643 | * @param int $mode 0=libelle long, 1=libelle court, 2=Picto + Libelle court, 3=Picto, 4=Picto + Libelle long, 5=Libelle court + Picto |
||
| 644 | * @return string Label of status |
||
| 645 | */ |
||
| 646 | public function LibStatut($statut, $mode = 0) |
||
| 682 | } |
||
| 683 | } |
||
| 684 | } |
||
| 685 |
In PHP, under loose comparison (like
==, or!=, orswitchconditions), values of different types might be equal.For
integervalues, zero is a special case, in particular the following results might be unexpected: