This repository has been archived on 2025-06-21. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
suitedesk/modules/cck/theme/content-admin-field-overview-form.tpl.php

101 lines
4.4 KiB
PHP

<?php
?>
<div>
<?php print $help; ?>
</div>
<table id="content-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('Type'); ?></th>
<th><?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>
<?php print $row->indentation; ?>
<span class="<?php print $row->label_class; ?>"><?php print $row->label; ?></span>
</td>
<td><?php print $row->weight . $row->parent . $row->hidden_name; ?></td>
<td><?php print $row->field_name; ?></td>
<td><?php print $row->type; ?></td>
<td><?php print $row->configure; ?>&nbsp;&nbsp;<?php print $row->remove; ?></td>
<?php break;
case 'group': ?>
<td>
<?php print $row->indentation; ?>
<span class="<?php print $row->label_class; ?>"><?php print $row->label; ?></span>
</td>
<td><?php print $row->weight . $row->parent . $row->hidden_name; ?></td>
<td><?php print $row->group_name; ?></td>
<td><?php print $row->group_type; ?></td>
<td><?php print $row->configure; ?>&nbsp;&nbsp;<?php print $row->remove; ?></td>
<?php break;
case 'extra': ?>
<td>
<?php print $row->indentation; ?>
<span class="<?php print $row->label_class; ?>"><?php print $row->label; ?></span>
</td>
<td><?php print $row->weight . $row->parent . $row->hidden_name; ?></td>
<td colspan="2"><?php print $row->description; ?></td>
<td><?php print $row->configure; ?>&nbsp;&nbsp;<?php print $row->remove; ?></td>
<?php break;
case 'separator': ?>
<td colspan="5" class="region"><?php print t('Add'); ?></td>
<?php break;
case 'add_new_field': ?>
<td>
<?php print $row->indentation; ?>
<div class="<?php print $row->label_class; ?>">
<div class="content-new"><?php print theme('advanced_help_topic', 'content', 'add-new-field') . t('New field'); ?></div>
<?php print $row->label; ?>
</div>
</td>
<td><div class="content-new">&nbsp;</div><?php print $row->weight . $row->parent . $row->hidden_name; ?></td>
<td><div class="content-new">&nbsp;</div><?php print $row->field_name; ?></td>
<td><div class="content-new">&nbsp;</div><?php print $row->type; ?></td>
<td><div class="content-new">&nbsp;</div><?php print $row->widget_type; ?></td>
<?php break;
case 'add_existing_field': ?>
<td>
<?php print $row->indentation; ?>
<div class="<?php print $row->label_class; ?>">
<div class="content-new"><?php print theme('advanced_help_topic', 'content', 'add-existing-field') . t('Existing field'); ?></div>
<?php print $row->label; ?>
</div>
</td>
<td><div class="content-new">&nbsp;</div><?php print $row->weight . $row->parent . $row->hidden_name; ?></td>
<td colspan="2"><div class="content-new">&nbsp;</div><?php print $row->field_name; ?></td>
<td><div class="content-new">&nbsp;</div><?php print $row->widget_type; ?></td>
<?php break;
case 'add_new_group': ?>
<td>
<?php print $row->indentation; ?>
<div class="<?php print $row->label_class; ?>">
<div class="content-new"><?php print theme('advanced_help_topic', 'content', 'add-new-group') . t('New group'); ?></div>
<?php print $row->label; ?>
</div>
</td>
<td><div class="content-new">&nbsp;</div><?php print $row->weight . $row->parent . $row->hidden_name; ?></td>
<td><div class="content-new">&nbsp;</div><?php print $row->group_name; ?></td>
<td><div class="content-new">&nbsp;</div><?php print $row->group_type; ?></td>
<td><div class="content-new">&nbsp;</div><?php print $row->group_option; ?></td>
<?php break;
endswitch; ?>
</tr>
<?php $count++;
endforeach; ?>
</tbody>
</table>
<?php print $submit; ?>