@@ -36,7 +36,7 @@ discard block |
||
| 36 | 36 | global $conf, $db, $hookmanager, $langs, $user; |
| 37 | 37 | |
| 38 | 38 | // Load translation files required by the page |
| 39 | -$langs->loadLangs(array('other','admin')); |
|
| 39 | +$langs->loadLangs(array('other', 'admin')); |
|
| 40 | 40 | |
| 41 | 41 | // Get parameters |
| 42 | 42 | $id = GETPOSTINT('id'); |
@@ -47,7 +47,7 @@ discard block |
||
| 47 | 47 | $contextpage = GETPOST('contextpage', 'aZ') ? GETPOST('contextpage', 'aZ') : 'targetcard'; // To manage different context of search |
| 48 | 48 | $backtopage = GETPOST('backtopage', 'alpha'); |
| 49 | 49 | $backtopageforcancel = GETPOST('backtopageforcancel', 'alpha'); |
| 50 | -$lineid = GETPOSTINT('lineid'); |
|
| 50 | +$lineid = GETPOSTINT('lineid'); |
|
| 51 | 51 | |
| 52 | 52 | // Initialize technical objects |
| 53 | 53 | $object = new Target($db); |
@@ -966,7 +966,7 @@ |
||
| 966 | 966 | /** |
| 967 | 967 | * @var array $suffix2numAsked map HTTP query parameter suffixes (like '1_0') to line indices so that |
| 968 | 968 | * extrafields from HTTP query can be assigned to the correct dispatch line |
| 969 | - */ |
|
| 969 | + */ |
|
| 970 | 970 | $suffix2numAsked = array(); |
| 971 | 971 | $dispatchLines = array(); |
| 972 | 972 | |
@@ -343,7 +343,7 @@ discard block |
||
| 343 | 343 | |
| 344 | 344 | // Loop lines to calculate $totalqty |
| 345 | 345 | for ($i = 1; $i <= $num; $i++) { |
| 346 | - $idl = "idl" . $i; // id line source |
|
| 346 | + $idl = "idl" . $i; // id line source |
|
| 347 | 347 | |
| 348 | 348 | //$sub_qty = array(); |
| 349 | 349 | //$subtotalqty = 0; |
@@ -351,7 +351,7 @@ discard block |
||
| 351 | 351 | //$j = 0; |
| 352 | 352 | //$batch = "batchl".$i."_0"; |
| 353 | 353 | //$stockLocation = "ent1".$i."_0"; |
| 354 | - $qty = "qtyl" . $i; // qty |
|
| 354 | + $qty = "qtyl" . $i; // qty |
|
| 355 | 355 | |
| 356 | 356 | //reception line for product with no batch management and no multiple stock location |
| 357 | 357 | if (GETPOST($qty, 'alpha') > 0) { |
@@ -365,7 +365,7 @@ discard block |
||
| 365 | 365 | |
| 366 | 366 | if ($totalqty > 0) { // There is at least one thing to ship |
| 367 | 367 | for ($i = 1; $i <= $num; $i++) { |
| 368 | - $idl = "idl" . $i; // id line source |
|
| 368 | + $idl = "idl" . $i; // id line source |
|
| 369 | 369 | $lineToTest = ''; |
| 370 | 370 | $lineId = GETPOSTINT($idl); |
| 371 | 371 | foreach ($objectsrc->lines as $linesrc) { |
@@ -1144,7 +1144,7 @@ discard block |
||
| 1144 | 1144 | |
| 1145 | 1145 | print '<input type="hidden" name="productl' . $indiceAsked . '" value="' . $line->fk_product . '">'; |
| 1146 | 1146 | |
| 1147 | - if (! array_key_exists($line->id, $arrayofpurchaselinealreadyoutput)) { // Add test to avoid to show qty twice |
|
| 1147 | + if (!array_key_exists($line->id, $arrayofpurchaselinealreadyoutput)) { // Add test to avoid to show qty twice |
|
| 1148 | 1148 | print '<input type="hidden" name="productid' . $indiceAsked . '" value="' . $line->fk_product . '">'; |
| 1149 | 1149 | |
| 1150 | 1150 | // Show product and description |
@@ -1166,7 +1166,7 @@ discard block |
||
| 1166 | 1166 | print '</td>'; |
| 1167 | 1167 | } else { |
| 1168 | 1168 | print "<td>"; |
| 1169 | - if (! array_key_exists($line->id, $arrayofpurchaselinealreadyoutput)) { // Add test to avoid to show qty twice |
|
| 1169 | + if (!array_key_exists($line->id, $arrayofpurchaselinealreadyoutput)) { // Add test to avoid to show qty twice |
|
| 1170 | 1170 | if ($type == 1) { |
| 1171 | 1171 | $text = img_object($langs->trans('Service'), 'service'); |
| 1172 | 1172 | } else { |
@@ -1195,7 +1195,7 @@ discard block |
||
| 1195 | 1195 | |
| 1196 | 1196 | // Qty in source purchase order line |
| 1197 | 1197 | print '<td class="center">'; |
| 1198 | - if (! array_key_exists($line->id, $arrayofpurchaselinealreadyoutput)) { // Add test to avoid to show qty twice |
|
| 1198 | + if (!array_key_exists($line->id, $arrayofpurchaselinealreadyoutput)) { // Add test to avoid to show qty twice |
|
| 1199 | 1199 | print $line->qty; |
| 1200 | 1200 | } |
| 1201 | 1201 | print '<input type="hidden" name="fk_commandefournisseurdet' . $indiceAsked . '" value="' . $line->id . '">'; |
@@ -1207,7 +1207,7 @@ discard block |
||
| 1207 | 1207 | // Qty already received |
| 1208 | 1208 | print '<td class="center">'; |
| 1209 | 1209 | $quantityDelivered = $objectsrc->receptions[$line->id]; |
| 1210 | - if (! array_key_exists($line->id, $arrayofpurchaselinealreadyoutput)) { // Add test to avoid to show qty twice |
|
| 1210 | + if (!array_key_exists($line->id, $arrayofpurchaselinealreadyoutput)) { // Add test to avoid to show qty twice |
|
| 1211 | 1211 | print $quantityDelivered; |
| 1212 | 1212 | } |
| 1213 | 1213 | print '<input name="qtydelivered' . $indiceAsked . '" id="qtydelivered' . $indiceAsked . '" type="hidden" value="' . $quantityDelivered . '">'; |
@@ -442,7 +442,7 @@ discard block |
||
| 442 | 442 | print '<center>'; |
| 443 | 443 | |
| 444 | 444 | print '<br>'; |
| 445 | - $disabled = 0; // This is used to disable or not the bulk selection of target warehouse. No reason to have it disabled so forced to 0. |
|
| 445 | + $disabled = 0; // This is used to disable or not the bulk selection of target warehouse. No reason to have it disabled so forced to 0. |
|
| 446 | 446 | |
| 447 | 447 | if ($object->statut == Reception::STATUS_DRAFT || ($object->statut == Reception::STATUS_VALIDATED && !getDolGlobalString('STOCK_CALCULATE_ON_RECEPTION'))) { |
| 448 | 448 | require_once constant('DOL_DOCUMENT_ROOT') . '/product/class/html.formproduct.class.php'; |
@@ -546,7 +546,7 @@ discard block |
||
| 546 | 546 | print '<td class="right">' . $langs->trans("SupplierRef") . '</td>'; |
| 547 | 547 | print '<td class="right">' . $langs->trans("QtyOrdered") . '</td>'; |
| 548 | 548 | if ($object->status == Reception::STATUS_DRAFT) { |
| 549 | - print '<td class="right">' . $langs->trans("QtyToReceive"); // Qty to dispatch (sum for all lines of batch detail if there is) |
|
| 549 | + print '<td class="right">' . $langs->trans("QtyToReceive"); // Qty to dispatch (sum for all lines of batch detail if there is) |
|
| 550 | 550 | } else { |
| 551 | 551 | print '<td class="right">' . $langs->trans("QtyDispatchedShort") . '</td>'; |
| 552 | 552 | } |
@@ -68,7 +68,7 @@ discard block |
||
| 68 | 68 | $search_date_delivery_endday = GETPOSTINT('search_date_delivery_endday'); |
| 69 | 69 | $search_date_delivery_endmonth = GETPOSTINT('search_date_delivery_endmonth'); |
| 70 | 70 | $search_date_delivery_endyear = GETPOSTINT('search_date_delivery_endyear'); |
| 71 | -$search_date_delivery_start = dol_mktime(0, 0, 0, $search_date_delivery_startmonth, $search_date_delivery_startday, $search_date_delivery_startyear); // Use tzserver |
|
| 71 | +$search_date_delivery_start = dol_mktime(0, 0, 0, $search_date_delivery_startmonth, $search_date_delivery_startday, $search_date_delivery_startyear); // Use tzserver |
|
| 72 | 72 | $search_date_delivery_end = dol_mktime(23, 59, 59, $search_date_delivery_endmonth, $search_date_delivery_endday, $search_date_delivery_endyear); |
| 73 | 73 | $search_date_create_startday = GETPOSTINT('search_date_create_startday'); |
| 74 | 74 | $search_date_create_startmonth = GETPOSTINT('search_date_create_startmonth'); |
@@ -76,7 +76,7 @@ discard block |
||
| 76 | 76 | $search_date_create_endday = GETPOSTINT('search_date_create_endday'); |
| 77 | 77 | $search_date_create_endmonth = GETPOSTINT('search_date_create_endmonth'); |
| 78 | 78 | $search_date_create_endyear = GETPOSTINT('search_date_create_endyear'); |
| 79 | -$search_date_create_start = dol_mktime(0, 0, 0, $search_date_create_startmonth, $search_date_create_startday, $search_date_create_startyear); // Use tzserver |
|
| 79 | +$search_date_create_start = dol_mktime(0, 0, 0, $search_date_create_startmonth, $search_date_create_startday, $search_date_create_startyear); // Use tzserver |
|
| 80 | 80 | $search_date_create_end = dol_mktime(23, 59, 59, $search_date_create_endmonth, $search_date_create_endday, $search_date_create_endyear); |
| 81 | 81 | $search_billed = GETPOST("search_billed", 'intcomma'); |
| 82 | 82 | $search_status = GETPOST('search_status', 'intcomma'); |
@@ -144,7 +144,7 @@ discard block |
||
| 144 | 144 | |
| 145 | 145 | $object->fields = dol_sort_array($object->fields, 'position'); |
| 146 | 146 | $arrayfields = dol_sort_array($arrayfields, 'position'); |
| 147 | -'@phan-var-force array<string,array{label:string,checked?:int<0,1>,position?:int,help?:string}> $arrayfields'; // dol_sort_array looses type for Phan |
|
| 147 | +'@phan-var-force array<string,array{label:string,checked?:int<0,1>,position?:int,help?:string}> $arrayfields'; // dol_sort_array looses type for Phan |
|
| 148 | 148 | |
| 149 | 149 | $error = 0; |
| 150 | 150 | |
@@ -336,7 +336,7 @@ discard block |
||
| 336 | 336 | // if the VAT reverse-charge is activated by default in supplier card to resume the information |
| 337 | 337 | $objecttmp->vat_reverse_charge = $soc->vat_reverse_charge; |
| 338 | 338 | |
| 339 | - $objecttmp->fk_project = $rcp->fk_project; |
|
| 339 | + $objecttmp->fk_project = $rcp->fk_project; |
|
| 340 | 340 | //$objecttmp->multicurrency_code = $rcp->multicurrency_code; |
| 341 | 341 | if (empty($createbills_onebythird)) { |
| 342 | 342 | $objecttmp->ref_supplier = $rcp->ref; |
@@ -369,7 +369,7 @@ discard block |
||
| 369 | 369 | } |
| 370 | 370 | } |
| 371 | 371 | |
| 372 | - $res = $objecttmp->create($user); // This should create the supplier invoice + links into $objecttmp->linked_objects + add a link to ->origin_id |
|
| 372 | + $res = $objecttmp->create($user); // This should create the supplier invoice + links into $objecttmp->linked_objects + add a link to ->origin_id |
|
| 373 | 373 | |
| 374 | 374 | //var_dump($objecttmp->error);exit; |
| 375 | 375 | if ($res > 0) { |
@@ -576,7 +576,7 @@ discard block |
||
| 576 | 576 | $db->rollback(); |
| 577 | 577 | |
| 578 | 578 | $action = 'create'; |
| 579 | - $_GET["origin"] = $_POST["origin"]; // Keep this ? |
|
| 579 | + $_GET["origin"] = $_POST["origin"]; // Keep this ? |
|
| 580 | 580 | $_GET["originid"] = $_POST["originid"]; // Keep this ? |
| 581 | 581 | setEventMessages($object->error, $errors, 'errors'); |
| 582 | 582 | $error++; |
@@ -45,7 +45,7 @@ discard block |
||
| 45 | 45 | public $reception; |
| 46 | 46 | |
| 47 | 47 | /** |
| 48 | - * Constructor |
|
| 48 | + * Constructor |
|
| 49 | 49 | */ |
| 50 | 50 | public function __construct() |
| 51 | 51 | { |
@@ -623,15 +623,15 @@ discard block |
||
| 623 | 623 | */ |
| 624 | 624 | |
| 625 | 625 | /** |
| 626 | - * Close a reception (Classify it as "Delivered") |
|
| 627 | - * |
|
| 628 | - * @param int $id Reception ID |
|
| 629 | - * @param int $notrigger Disabled triggers |
|
| 630 | - * |
|
| 631 | - * @url POST {id}/close |
|
| 632 | - * |
|
| 633 | - * @return Object |
|
| 634 | - */ |
|
| 626 | + * Close a reception (Classify it as "Delivered") |
|
| 627 | + * |
|
| 628 | + * @param int $id Reception ID |
|
| 629 | + * @param int $notrigger Disabled triggers |
|
| 630 | + * |
|
| 631 | + * @url POST {id}/close |
|
| 632 | + * |
|
| 633 | + * @return Object |
|
| 634 | + */ |
|
| 635 | 635 | public function close($id, $notrigger = 0) |
| 636 | 636 | { |
| 637 | 637 | if (!DolibarrApiAccess::$user->hasRight('reception', 'creer')) { |
@@ -663,7 +663,7 @@ discard block |
||
| 663 | 663 | return $this->_cleanObjectDatas($this->reception); |
| 664 | 664 | } |
| 665 | 665 | |
| 666 | - // phpcs:disable PEAR.NamingConventions.ValidFunctionName.PublicUnderscore |
|
| 666 | + // phpcs:disable PEAR.NamingConventions.ValidFunctionName.PublicUnderscore |
|
| 667 | 667 | /** |
| 668 | 668 | * Clean sensible object datas |
| 669 | 669 | * |
@@ -672,7 +672,7 @@ discard block |
||
| 672 | 672 | */ |
| 673 | 673 | protected function _cleanObjectDatas($object) |
| 674 | 674 | { |
| 675 | - // phpcs:enable |
|
| 675 | + // phpcs:enable |
|
| 676 | 676 | $object = parent::_cleanObjectDatas($object); |
| 677 | 677 | |
| 678 | 678 | unset($object->thirdparty); // id already returned |
@@ -204,11 +204,11 @@ |
||
| 204 | 204 | |
| 205 | 205 | $receptionline->fk_product = $line['fk_product']; |
| 206 | 206 | $receptionline->fk_entrepot = $line['fk_entrepot']; |
| 207 | - $receptionline->fk_element = $line['fk_element'] ?? $line['origin_id']; // example: purchase order id. this->origin is 'supplier_order' |
|
| 207 | + $receptionline->fk_element = $line['fk_element'] ?? $line['origin_id']; // example: purchase order id. this->origin is 'supplier_order' |
|
| 208 | 208 | $receptionline->origin_line_id = $line['fk_elementdet'] ?? $line['origin_line_id']; // example: purchase order id |
| 209 | - $receptionline->fk_elementdet = $line['fk_elementdet'] ?? $line['origin_line_id']; // example: purchase order line id |
|
| 210 | - $receptionline->origin_type = $line['element_type'] ?? $line['origin_type']; // example 'supplier_order' |
|
| 211 | - $receptionline->element_type = $line['element_type'] ?? $line['origin_type']; // example 'supplier_order' |
|
| 209 | + $receptionline->fk_elementdet = $line['fk_elementdet'] ?? $line['origin_line_id']; // example: purchase order line id |
|
| 210 | + $receptionline->origin_type = $line['element_type'] ?? $line['origin_type']; // example 'supplier_order' |
|
| 211 | + $receptionline->element_type = $line['element_type'] ?? $line['origin_type']; // example 'supplier_order' |
|
| 212 | 212 | $receptionline->qty = $line['qty']; |
| 213 | 213 | //$receptionline->rang = $line['rang']; |
| 214 | 214 | $receptionline->array_options = $line['array_options']; |
@@ -1181,7 +1181,7 @@ discard block |
||
| 1181 | 1181 | } |
| 1182 | 1182 | } |
| 1183 | 1183 | |
| 1184 | - // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps |
|
| 1184 | + // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps |
|
| 1185 | 1185 | /** |
| 1186 | 1186 | * Load lines |
| 1187 | 1187 | * |
@@ -1189,7 +1189,7 @@ discard block |
||
| 1189 | 1189 | */ |
| 1190 | 1190 | public function fetch_lines() |
| 1191 | 1191 | { |
| 1192 | - // phpcs:enable |
|
| 1192 | + // phpcs:enable |
|
| 1193 | 1193 | $this->lines = array(); |
| 1194 | 1194 | |
| 1195 | 1195 | require_once constant('DOL_DOCUMENT_ROOT') . '/fourn/class/fournisseur.commande.dispatch.class.php'; |
@@ -1334,7 +1334,7 @@ discard block |
||
| 1334 | 1334 | return $this->LibStatut($this->statut, $mode); |
| 1335 | 1335 | } |
| 1336 | 1336 | |
| 1337 | - // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps |
|
| 1337 | + // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps |
|
| 1338 | 1338 | /** |
| 1339 | 1339 | * Return label of a status |
| 1340 | 1340 | * |
@@ -1344,7 +1344,7 @@ discard block |
||
| 1344 | 1344 | */ |
| 1345 | 1345 | public function LibStatut($status, $mode) |
| 1346 | 1346 | { |
| 1347 | - // phpcs:enable |
|
| 1347 | + // phpcs:enable |
|
| 1348 | 1348 | global $langs; |
| 1349 | 1349 | |
| 1350 | 1350 | // List of long language codes for status |
@@ -1510,7 +1510,7 @@ discard block |
||
| 1510 | 1510 | } |
| 1511 | 1511 | } |
| 1512 | 1512 | |
| 1513 | - // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps |
|
| 1513 | + // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps |
|
| 1514 | 1514 | /** |
| 1515 | 1515 | * Fetch deliveries method and return an array. Load array this->meths(rowid=>label). |
| 1516 | 1516 | * |
@@ -1518,7 +1518,7 @@ discard block |
||
| 1518 | 1518 | */ |
| 1519 | 1519 | public function fetch_delivery_methods() |
| 1520 | 1520 | { |
| 1521 | - // phpcs:enable |
|
| 1521 | + // phpcs:enable |
|
| 1522 | 1522 | global $langs; |
| 1523 | 1523 | $this->meths = array(); |
| 1524 | 1524 | |
@@ -1536,7 +1536,7 @@ discard block |
||
| 1536 | 1536 | } |
| 1537 | 1537 | } |
| 1538 | 1538 | |
| 1539 | - // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps |
|
| 1539 | + // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps |
|
| 1540 | 1540 | /** |
| 1541 | 1541 | * Fetch all deliveries method and return an array. Load array this->listmeths. |
| 1542 | 1542 | * |
@@ -1545,7 +1545,7 @@ discard block |
||
| 1545 | 1545 | */ |
| 1546 | 1546 | public function list_delivery_methods($id = 0) |
| 1547 | 1547 | { |
| 1548 | - // phpcs:enable |
|
| 1548 | + // phpcs:enable |
|
| 1549 | 1549 | global $langs; |
| 1550 | 1550 | |
| 1551 | 1551 | $this->listmeths = array(); |
@@ -734,9 +734,9 @@ discard block |
||
| 734 | 734 | if ($this->origin_object instanceof CommonObject && empty($this->origin_object->lines)) { |
| 735 | 735 | $res = $this->origin_object->fetch_lines(); |
| 736 | 736 | if ($this->origin_object instanceof CommandeFournisseur) { |
| 737 | - $this->commandeFournisseur = $this->origin_object; // deprecated |
|
| 737 | + $this->commandeFournisseur = $this->origin_object; // deprecated |
|
| 738 | 738 | } else { |
| 739 | - $this->commandeFournisseur = null; // deprecated |
|
| 739 | + $this->commandeFournisseur = null; // deprecated |
|
| 740 | 740 | } |
| 741 | 741 | if ($res < 0) { |
| 742 | 742 | return $res; |
@@ -1358,7 +1358,7 @@ discard block |
||
| 1358 | 1358 | if (getDolGlobalInt("STOCK_CALCULATE_ON_RECEPTION_CLOSE")) { |
| 1359 | 1359 | $this->labelStatus[1] = 'StatusReceptionValidatedToReceive'; |
| 1360 | 1360 | } |
| 1361 | - $this->labelStatus[2] = 'StatusReceptionProcessed'; |
|
| 1361 | + $this->labelStatus[2] = 'StatusReceptionProcessed'; |
|
| 1362 | 1362 | |
| 1363 | 1363 | // List of short language codes for status |
| 1364 | 1364 | $this->labelStatusShort[-1] = 'StatusReceptionCanceledShort'; |
@@ -1468,7 +1468,7 @@ discard block |
||
| 1468 | 1468 | while ($xnbp < $nbp) { |
| 1469 | 1469 | $line = new CommandeFournisseurDispatch($this->db); |
| 1470 | 1470 | $line->desc = $langs->trans("Description") . " " . $xnbp; |
| 1471 | - $line->libelle = $langs->trans("Description") . " " . $xnbp; // deprecated |
|
| 1471 | + $line->libelle = $langs->trans("Description") . " " . $xnbp; // deprecated |
|
| 1472 | 1472 | $line->label = $langs->trans("Description") . " " . $xnbp; |
| 1473 | 1473 | $line->qty = 10; |
| 1474 | 1474 | |
@@ -568,7 +568,7 @@ discard block |
||
| 568 | 568 | return $this->LibStatut($this->status, $mode); |
| 569 | 569 | } |
| 570 | 570 | |
| 571 | - // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps |
|
| 571 | + // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps |
|
| 572 | 572 | /** |
| 573 | 573 | * Return label of a status |
| 574 | 574 | * |
@@ -578,7 +578,7 @@ discard block |
||
| 578 | 578 | */ |
| 579 | 579 | public function LibStatut($status, $mode = 0) |
| 580 | 580 | { |
| 581 | - // phpcs:enable |
|
| 581 | + // phpcs:enable |
|
| 582 | 582 | global $langs; |
| 583 | 583 | $langs->load('orders'); |
| 584 | 584 | |
@@ -91,9 +91,9 @@ |
||
| 91 | 91 | } else { |
| 92 | 92 | $permissiontocreate = isModEnabled('website') && $user->hasRight('website', 'write') || isModEnabled('webportal') && $user->hasRight('webportal', 'write'); |
| 93 | 93 | } |
| 94 | -$permissionnote = $permissiontocreate; // Used by the include of actions_setnotes.inc.php |
|
| 95 | -$permissiondellink = $permissiontocreate; // Used by the include of actions_dellink.inc.php |
|
| 96 | -$permissiontoadd = $permissiontocreate; // Used by the include of actions_addupdatedelete.inc.php and actions_lineupdown.inc.php |
|
| 94 | +$permissionnote = $permissiontocreate; // Used by the include of actions_setnotes.inc.php |
|
| 95 | +$permissiondellink = $permissiontocreate; // Used by the include of actions_dellink.inc.php |
|
| 96 | +$permissiontoadd = $permissiontocreate; // Used by the include of actions_addupdatedelete.inc.php and actions_lineupdown.inc.php |
|
| 97 | 97 | |
| 98 | 98 | // check access from type of site on create, edit, delete (other than view) |
| 99 | 99 | $site_type_js = ''; |
@@ -826,7 +826,7 @@ discard block |
||
| 826 | 826 | return $this->LibStatut($this->status, $mode); |
| 827 | 827 | } |
| 828 | 828 | |
| 829 | - // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps |
|
| 829 | + // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps |
|
| 830 | 830 | /** |
| 831 | 831 | * Return the label of a given status |
| 832 | 832 | * |
@@ -836,7 +836,7 @@ discard block |
||
| 836 | 836 | */ |
| 837 | 837 | public function LibStatut($status, $mode = 0) |
| 838 | 838 | { |
| 839 | - // phpcs:enable |
|
| 839 | + // phpcs:enable |
|
| 840 | 840 | global $langs; |
| 841 | 841 | |
| 842 | 842 | if (empty($this->labelStatus) || empty($this->labelStatusShort)) { |
@@ -1126,7 +1126,7 @@ discard block |
||
| 1126 | 1126 | $stringtoexport = str_replace('medias/image/' . $website->ref . '/', "medias/image/__WEBSITE_KEY__/", $stringtoexport); |
| 1127 | 1127 | $stringtoexport = str_replace('medias/js/' . $website->ref . '/', "medias/js/__WEBSITE_KEY__/", $stringtoexport); |
| 1128 | 1128 | $stringtoexport = str_replace('"image/' . $website->ref . '/', '"image/__WEBSITE_KEY__/', $stringtoexport); // When we have a link src="image/websiteref/file.png" into html content |
| 1129 | - $stringtoexport = str_replace('"/image/' . $website->ref . '/', '"/image/__WEBSITE_KEY__/', $stringtoexport); // When we have a link src="/image/websiteref/file.png" into html content |
|
| 1129 | + $stringtoexport = str_replace('"/image/' . $website->ref . '/', '"/image/__WEBSITE_KEY__/', $stringtoexport); // When we have a link src="/image/websiteref/file.png" into html content |
|
| 1130 | 1130 | $stringtoexport = str_replace('"js/' . $website->ref . '/', '"js/__WEBSITE_KEY__/', $stringtoexport); |
| 1131 | 1131 | $stringtoexport = str_replace('"/js/' . $website->ref . '/', '"/js/__WEBSITE_KEY__/', $stringtoexport); |
| 1132 | 1132 | |
@@ -1455,7 +1455,7 @@ discard block |
||
| 1455 | 1455 | $filetpl = $pathofwebsite . '/page' . $object->fk_default_home . '.tpl.php'; |
| 1456 | 1456 | } |
| 1457 | 1457 | $filewrapper = $pathofwebsite . '/wrapper.php'; |
| 1458 | - dolSaveIndexPage($pathofwebsite, $fileindex, $filetpl, $filewrapper, $object); // This includes also a version of index.php into sublanguage directories |
|
| 1458 | + dolSaveIndexPage($pathofwebsite, $fileindex, $filetpl, $filewrapper, $object); // This includes also a version of index.php into sublanguage directories |
|
| 1459 | 1459 | } |
| 1460 | 1460 | |
| 1461 | 1461 | if ($error) { |
@@ -1901,7 +1901,7 @@ discard block |
||
| 1901 | 1901 | $destContent = file_get_contents($fileNeeded['fullname']); |
| 1902 | 1902 | |
| 1903 | 1903 | $numOfPageDest = $this->extractNumberFromFilename($fileNeeded['name']); |
| 1904 | - $differences = $this->showDifferences($destContent, $sourceContent, array($numOfPageDest,$numOfPageSource)); |
|
| 1904 | + $differences = $this->showDifferences($destContent, $sourceContent, array($numOfPageDest, $numOfPageSource)); |
|
| 1905 | 1905 | $differences['file_destination'] = $fileNeeded; |
| 1906 | 1906 | } else { |
| 1907 | 1907 | $differences = array(); |
@@ -1944,7 +1944,7 @@ discard block |
||
| 1944 | 1944 | $linefound = array(); |
| 1945 | 1945 | $countNumPage = count($exceptNumPge); |
| 1946 | 1946 | |
| 1947 | - for ($i = 0;$i < $countNumPage; $i++) { |
|
| 1947 | + for ($i = 0; $i < $countNumPage; $i++) { |
|
| 1948 | 1948 | $linefound[$i] = array(); |
| 1949 | 1949 | $linefound[$i]['meta'] = '/content="' . preg_quote($exceptNumPge[$i], '/') . '" \/>/'; |
| 1950 | 1950 | $linefound[$i]['output'] = '/dolWebsiteOutput\(\$tmp, "html", ' . preg_quote($exceptNumPge[$i], '/') . '\);/'; |