| Server IP : 195.130.67.5 / Your IP : 216.73.217.154 Web Server : Microsoft-IIS/10.0 System : Windows NT WEBSERVER1 10.0 build 17763 (Windows Server 2016) i586 User : IUSR ( 0) PHP Version : 7.4.19 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/inetpub/wwwroot/business/pms/modules/cck/modules/content_copy/ |
Upload File : |
<?php
// $Id: content_copy_export_form.tpl.php,v 1.1.2.2 2008/10/28 02:11:49 yched Exp $
if ($form['#step'] == 2):
if ($rows): ?>
<table id="content-copy-export" class="sticky-enabled">
<thead>
<tr>
<th><?php print t('Export'); ?></th>
<th><?php print t('Label'); ?></th>
<th><?php print t('Name'); ?></th>
<th><?php print t('Type'); ?></th>
</tr>
</thead>
<tbody>
<?php
$count = 0;
foreach ($rows as $row): ?>
<tr class="<?php print $count % 2 == 0 ? 'odd' : 'even'; ?>">
<?php
switch ($row->row_type):
case 'field': ?>
<td><?php print $row->checkbox; ?></td>
<td><?php print $row->indentation; ?><span class="<?php print $row->label_class; ?>"><?php print $row->human_name; ?></span></td>
<td><?php print $row->field_name; ?></td>
<td><?php print $row->type; ?></td>
<?php break;
case 'group': ?>
<td><?php print $row->checkbox; ?></td>
<td><?php print $row->indentation; ?><span class="<?php print $row->label_class; ?>"><?php print $row->human_name; ?></span></td>
<td colspan="2"><?php print $row->group_name; ?></td>
<?php break;
endswitch; ?>
</tr>
<?php $count++;
endforeach; ?>
</tbody>
</table>
<?php endif;
endif;
print $submit; ?>