Skip to content

Commit 7d0fa25

Browse files
committed
#68 add help info below options field pertaining to numbers
1 parent 960253e commit 7d0fa25

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

Template/config/edit.php

+1
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323
<?= $this->form->text('options', $values, $errors) ?>
2424
<p><?= e('Example: <code>value1,value2,value3</code> for list types. For Key-value from DB: <code>tablename,keycolumn,valuecolumn</code>.') ?></p>
2525
<p><?= e('Example: For Column from DB, based on equals Criteria: <code>tablename,criteria_column,criteria,value_column</code>.') ?></p>
26+
<p><?= e('Example: For Numbers, anything in the Options field will show up before the value, for instance, to add a dollar sign before the number.') ?></p>
2627

2728
<?= $this->form->label(t('Column'), 'column_number') ?>
2829
<?= $this->form->select('column_number', [

Template/config/metadata_types.php

+1
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@
3838
<?= $this->form->text('options', $values, $errors) ?>
3939
<p><?= e('Example: <code>value1,value2,value3</code> for list types. For Key-value from DB: <code>tablename,keycolumn,valuecolumn</code>.') ?></p>
4040
<p><?= e('Example: For Column from DB, based on equals Criteria: <code>tablename,criteria_column,criteria,value_column</code>.') ?></p>
41+
<p><?= e('Example: For Numbers, anything in the Options field will show up before the value, for instance, to add a dollar sign before the number.') ?></p>
4142

4243
<?= $this->form->label(t('Column'), 'column_number') ?>
4344
<?= $this->form->select('column_number', [

0 commit comments

Comments
 (0)