-
Notifications
You must be signed in to change notification settings - Fork 3
/
config_form.php
executable file
·35 lines (35 loc) · 1.54 KB
/
config_form.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<div class="field">
<div class="two columns alpha">
<label for="tei_editions_default_item_type"><?php echo __('Default Item Type'); ?></label>
</div>
<div class="inputs five columns omega">
<p class="explanation">
<?php echo __("The default item type for items created via TEI ingest."); ?>
</p>
<?php echo get_view()->formSelect('tei_editions_default_item_type', get_option('tei_editions_default_item_type'), null,
get_table_options('ItemType')); ?>
</div>
</div>
<div class="field">
<div class="two columns alpha">
<label for="tei_editions_template_neatline"><?php echo __('Template Exhibit'); ?></label>
</div>
<div class="inputs five columns omega">
<p class="explanation">
<?php echo __("A template Neatline exhibit from which settings will be inherited."); ?>
</p>
<?php echo get_view()->formSelect('tei_editions_template_neatline', get_option('tei_editions_template_neatline'), null,
get_table_options('NeatlineExhibit')); ?>
</div>
</div>
<div class="field">
<div class="two columns alpha">
<label for="tei_editions_template_neatline"><?php echo __('Geonames Username'); ?></label>
</div>
<div class="inputs five columns omega">
<p class="explanation">
<?php echo __("Username for Geonames data lookup with enhancement."); ?>
</p>
<?php echo get_view()->formInput('tei_editions_geonames_username', get_option('tei_editions_geonames_username')); ?>
</div>
</div>