Works on hook
This commit is contained in:
parent
83cf657906
commit
ef14fba623
@ -1,6 +1,6 @@
|
|||||||
<?php
|
<?php
|
||||||
/* Copyright (C) 2010 Regis Houssin <regis@dolibarr.fr>
|
/* Copyright (C) 2010-2011 Regis Houssin <regis@dolibarr.fr>
|
||||||
* Copyright (C) 2010 Laurent Destailleur <eldy@users.sourceforge.net>
|
* Copyright (C) 2010-2011 Laurent Destailleur <eldy@users.sourceforge.net>
|
||||||
*
|
*
|
||||||
* This program is free software; you can redistribute it and/or modify
|
* This program is free software; you can redistribute it and/or modify
|
||||||
* it under the terms of the GNU General Public License as published by
|
* it under the terms of the GNU General Public License as published by
|
||||||
@ -38,7 +38,15 @@
|
|||||||
<tr <?php echo $bc[$var]; ?>>
|
<tr <?php echo $bc[$var]; ?>>
|
||||||
<td>
|
<td>
|
||||||
<a name="<?php echo $line->id; ?>"></a>
|
<a name="<?php echo $line->id; ?>"></a>
|
||||||
|
|
||||||
<?php
|
<?php
|
||||||
|
if (! empty($this->hooks)) {
|
||||||
|
foreach($this->hooks as $module) {
|
||||||
|
$module->formAddProductOption($this,$line->fk_parent_line);
|
||||||
|
echo '<br>';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// editeur wysiwyg
|
// editeur wysiwyg
|
||||||
$nbrows=ROWS_2;
|
$nbrows=ROWS_2;
|
||||||
if (! empty($conf->global->MAIN_INPUT_DESC_HEIGHT)) $nbrows=$conf->global->MAIN_INPUT_DESC_HEIGHT;
|
if (! empty($conf->global->MAIN_INPUT_DESC_HEIGHT)) $nbrows=$conf->global->MAIN_INPUT_DESC_HEIGHT;
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user