Skip to content
Snippets Groups Projects
Commit e81f8846 authored by Reinhold Kainhofer's avatar Reinhold Kainhofer
Browse files

V3.0: Final 3.0 release (Adds custom variables, counter format in the nmbers)

Some last bug fixes
parent 51efcf5f
No related branches found
No related tags found
No related merge requests found
...@@ -130,7 +130,7 @@ class JFormFieldVmOrdernumberReplacements extends JFormField { ...@@ -130,7 +130,7 @@ class JFormFieldVmOrdernumberReplacements extends JFormField {
$html[] = ' </tr>'; $html[] = ' </tr>';
$html[] = ' <tr id="ordernumber-replacements-empty-row" class="oton-empty-row-notice ' . (empty($variables)?"":"rowhidden") . '">'; $html[] = ' <tr id="ordernumber-replacements-empty-row" class="oton-empty-row-notice ' . (empty($variables)?"":"rowhidden") . '">';
$html[] = ' <td class="oton-empty-row-notice" colspan="8">'; $html[] = ' <td class="oton-empty-row-notice" colspan="8">';
$html[] = ' <em>a' . self::__('PLG_ORDERNUMBER_REPL_NOCUSTOMVARS') . '</em>'; $html[] = ' <em>' . self::__('PLG_ORDERNUMBER_REPL_NOCUSTOMVARS') . '</em>';
$html[] = ' <input type="hidden" name="' . $name . '" value="" ' . (empty($variables))?'':'disabled' . '>'; $html[] = ' <input type="hidden" name="' . $name . '" value="" ' . (empty($variables))?'':'disabled' . '>';
$html[] = ' </td>'; $html[] = ' </td>';
$html[] = ' </tr>'; $html[] = ' </tr>';
......
...@@ -28,7 +28,7 @@ class plgVmShopperOrdernumber extends vmShopperPlugin { ...@@ -28,7 +28,7 @@ class plgVmShopperOrdernumber extends vmShopperPlugin {
function getTableSQLFields () { function getTableSQLFields () {
$SQLfields = array( $SQLfields = array(
'id' => 'int(11) UNSIGNED NOT NULL AUTO_INCREMENT', 'id' => 'int(11) UNSIGNED NOT NULL AUTO_INCREMENT',
'number_type' => 'int(1) UNSIGNED', 'number_type' => 'varchar(30)',
'number_format' => 'varchar(255)', 'number_format' => 'varchar(255)',
'count' => 'int(1)', 'count' => 'int(1)',
); );
......
File added
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment