-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathconfig_form.php
28 lines (28 loc) · 1.22 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
<div class="field">
<div class="two columns alpha">
<?php echo get_view()->formLabel('item_relations_public_append_to_items_show', __('Append to Public Items Show')); ?>
</div>
<div class="inputs five columns omega">
<p class="explanation">
<?php
echo __('Check this if you want to display an item\'s relations on '
. 'its public show page.');
?>
</p>
<?php echo get_view()->formCheckbox('item_relations_public_append_to_items_show', null, array('checked' => $publicAppendToItemsShow)); ?>
</div>
</div>
<div class="field">
<div class="two columns alpha">
<?php echo get_view()->formLabel('item_relations_relation_format', __('Relation Format')); ?>
</div>
<div class="inputs five columns omega">
<p class="explanation">
<?php
echo __('Select the format of an item\'s relations that you would '
. 'prefer to show. If one is unavailable the other will be used.');
?>
</p>
<?php echo get_view()->formSelect('item_relations_relation_format', $relationFormat, null, array('prefix_local_part' => 'prefix:localPart', 'label' => 'label')); ?>
</div>
</div>