blob: 178e5151331af2ed248aba7f4470ba08c7fab5fa (
plain)
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
|
<?php
// $Id$
/**
* @file
* Default theme implementation to configure field settings.
*
* Available variables:
*
* - $form: The complete overview form for the field settings.
* - $contexts: An associative array of the available contexts for these fields.
* On the node field display settings this defaults to including "teaser" and
* "full" as the available contexts.
* - $rows: The field overview form broken down into rendered rows for printing
* as a table.
* - $submit: The rendered submit button for this form.
*
* @see field_ui_field_overview_form()
* @see template_preprocess_field_ui_field_overview_form()
*/
?>
<table id="field-overview" class="sticky-enabled">
<thead>
<tr>
<th><?php print t('Label'); ?></th>
<th><?php print t('Weight'); ?></th>
<th><?php print t('Name'); ?></th>
<th><?php print t('Field'); ?></th>
<th><?php print t('Widget'); ?></th>
<th colspan="2"><?php print t('Operations'); ?></th>
</tr>
</thead>
<tbody>
<?php
$count = 0;
foreach ($rows as $row): ?>
<tr class="<?php print $count % 2 == 0 ? 'odd' : 'even'; ?> <?php print $row->class ?>">
<?php
switch ($row->row_type):
case 'field': ?>
<td>
<span class="<?php print $row->label_class; ?>"><?php print $row->label; ?></span>
</td>
<td><?php print $row->weight . $row->hidden_name; ?></td>
<td><?php print $row->field_name; ?></td>
<td><?php print $row->type; ?></td>
<td><?php print $row->widget_type; ?></td>
<td><?php print $row->edit; ?></td>
<td><?php print $row->delete; ?></td>
<?php break;
case 'extra': ?>
<td>
<span class="<?php print $row->label_class; ?>"><?php print $row->label; ?></span>
</td>
<td><?php print $row->weight . $row->hidden_name; ?></td>
<td><?php print $row->name; ?></td>
<td colspan="2"><?php print $row->description; ?></td>
<td><?php print $row->edit; ?></td>
<td><?php print $row->delete; ?></td>
<?php break;
case 'add_new_field': ?>
<td>
<div class="<?php print $row->label_class; ?>">
<div class="new"><?php print t('Add new field'); ?></div>
<?php print $row->label; ?>
</div>
</td>
<td><div class="new"> </div><?php print $row->weight . $row->hidden_name; ?></td>
<td colspan="2"><div class="new"> </div><?php print $row->field_name; ?></td>
<td><div class="new"> </div><?php print $row->type; ?></td>
<td colspan="2"><div class="new"> </div><?php print $row->widget_type; ?></td>
<?php break;
case 'add_existing_field': ?>
<td>
<div class="<?php print $row->label_class; ?>">
<div class="new"><?php print t('Add existing field'); ?></div>
<?php print $row->label; ?>
</div>
</td>
<td><div class="new"> </div><?php print $row->weight . $row->hidden_name; ?></td>
<td colspan="3"><div class="new"> </div><?php print $row->field_name; ?></td>
<td colspan="2"><div class="new"> </div><?php print $row->widget_type; ?></td>
<?php break;
endswitch; ?>
</tr>
<?php $count++;
endforeach; ?>
</tbody>
</table>
<?php print $submit; ?>
|