dolibarr  16.0.5
productattributevalueline_create.tpl.php
1 <?php
2 /* Copyright (C) 2022 Open-Dsi <support@open-dsi.fr>
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation; either version 3 of the License, or
7  * (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program. If not, see <https://www.gnu.org/licenses/>.
16  *
17  * Need to have following variables defined:
18  * $object (invoice, order, ...)
19  * $conf
20  * $langs
21  * $dateSelector
22  * $forceall (0 by default, 1 for supplier invoices/orders)
23  * $senderissupplier (0 by default, 1 or 2 for supplier invoices/orders)
24  * $inputalsopricewithtax (0 by default, 1 to also show column with unit price including tax)
25  */
26 
27 // Protection to avoid direct call of template
28 if (empty($object) || !is_object($object)) {
29  print "Error: this template page cannot be called directly as an URL";
30  exit;
31 }
32 
33 global $forcetoshowtitlelines;
34 
35 // Define colspan for the button 'Add'
36 $colspan = 3; // Columns: col edit + col delete + move button
37 
38 // Lines for extrafield
39 $objectline = null;
40 
41 print "<!-- BEGIN PHP TEMPLATE productattributevalueline_create.tpl.php -->\n";
42 $nolinesbefore = (count($this->lines) == 0 || $forcetoshowtitlelines);
43 if ($nolinesbefore) {
44  ?>
45  <tr class="liste_titre<?php echo ($nolinesbefore ? '' : ' liste_titre_add_') ?> nodrag nodrop">
46  <?php if (!empty($conf->global->MAIN_VIEW_LINE_NUMBER)) { ?>
47  <td class="linecolnum center"></td>
48  <?php } ?>
49  <td class="linecolref">
50  <div id="add"></div><span class="hideonsmartphone"><?php echo $langs->trans('AddNewLine'); ?></span>
51  </td>
52  <td class="linecolvalue"><span id="title_vat"><?php echo $langs->trans('Value'); ?></span></td>
53  <td class="linecoledit" colspan="<?php echo $colspan; ?>">&nbsp;</td>
54  </tr>
55  <?php
56 }
57 ?>
58 <tr class="pair nodrag nodrop nohoverpair<?php echo $nolinesbefore ? '' : ' liste_titre_create'; ?>">
59  <?php
60  $coldisplay = 0;
61  // Adds a line numbering column
62  if (!empty($conf->global->MAIN_VIEW_LINE_NUMBER)) {
63  $coldisplay++;
64  echo '<td class="nobottom linecolnum center"></td>';
65  }
66  $coldisplay++;
67  ?>
68  <td class="nobottom linecolref">
69  <?php $coldisplay++; if ($nolinesbefore) { echo $langs->trans('Ref') . ': '; } ?>
70  <input type="text" name="line_ref" id="line_ref" class="flat" value="<?php echo (GETPOSTISSET("line_ref") ? GETPOST("line_ref", 'alpha', 2) : ''); ?>" autofocus>
71  <?php
72  if (is_object($hookmanager)) {
73  $parameters = array();
74  $reshook = $hookmanager->executeHooks('formCreateValueOptions', $parameters, $object, $action);
75  if (!empty($hookmanager->resPrint)) {
76  print $hookmanager->resPrint;
77  }
78  }
79  ?>
80  </td>
81 
82  <td class="nobottom linecolvalue"><?php $coldisplay++; ?>
83  <input type="text" name="line_value" id="line_value" class="flat" value="<?php echo (GETPOSTISSET("line_value") ? GETPOST("line_value", 'alpha', 2) : ''); ?>">
84  </td>
85 
86  <td class="nobottom linecoledit center valignmiddle" colspan="<?php echo $colspan; ?>"><?php $coldisplay += $colspan; ?>
87  <input type="submit" class="button reposition" value="<?php echo $langs->trans('Add'); ?>" name="addline" id="addline">
88  </td>
89 </tr>
90 
91 <!-- END PHP TEMPLATE productattributevalueline_create.tpl.php -->
name
$conf db name
Definition: repair.php:122
type
if(preg_match('/crypted:/i', $dolibarr_main_db_pass)||!empty($dolibarr_main_db_encrypted_pass)) $conf db type
Definition: repair.php:119