Subversion Repositories wpShopGermany4

Rev

Rev 6283 | Rev 6503 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 6283 Rev 6306
Line 1... Line 1...
1
<?php
1
<?php
2
 
2
 
3
    /**  Lieste der Länder im Backend */
3
    /**  Liste der Länder im Backend */
4
 
4
 
5
?>
5
?>
6
 
6
 
7
<?php echo $this->writeBackendMessage(true); ?>
7
<?php echo $this->writeBackendMessage(true); ?>
8
 
8
 
Line 23... Line 23...
23
            </tr>
23
            </tr>
24
        </thead>
24
        </thead>
25
 
25
 
26
        <tbody>
26
        <tbody>
27
            <?php foreach ($this->view['data'] as $l) { ?>
27
            <?php foreach ($this->view['data'] as $l) { ?>
28
                <tr id="<?php echo $l['id']; ?>" class="<?php echo (($this->get_option('wpsg_defaultland') == $l['id'])?'bg-info':''); ?>">
28
                <tr id="wpsg_laenderrow_<?php echo $l['id']; ?>" class="<?php echo (($this->get_option('wpsg_defaultland') == $l['id'])?'bg-info':''); ?>">
29
                    <td class="col_check"><input type="checkbox" value="1" name="arDelete[<?php echo $l['id']; ?>]" /></td>
29
                    <td class="col_check"><input type="checkbox" value="1" name="arDelete[<?php echo $l['id']; ?>]" /></td>
30
                    <td class="col_name"><?php echo wpsg_hspc($l['name'].((wpsg_isSizedString($l['kuerzel']))?' ('.$l['kuerzel'].')':'')); ?></td>
30
                    <td class="col_name"><?php echo wpsg_hspc($l['name'].((wpsg_isSizedString($l['kuerzel']))?' ('.$l['kuerzel'].')':'')); ?></td>
31
                    <td class="col_vz">
31
                    <td class="col_vz">
32
                        <?php if (wpsg_isSizedInt($l['vz']) && wpsg_isSizedString($this->view['vz'][$l['vz']])) { ?>
32
                        <?php if (wpsg_isSizedInt($l['vz']) && wpsg_isSizedString($this->view['vz'][$l['vz']])) { ?>
33
                            <?php echo wpsg_hspc($this->view['vz'][$l['vz']]); ?>
33
                            <?php echo wpsg_hspc($this->view['vz'][$l['vz']]); ?>
Line 55... Line 55...
55
                            <?php echo wpsg_ff(wpsg_tf($l['mwst_d']), '%'); ?>
55
                            <?php echo wpsg_ff(wpsg_tf($l['mwst_d']), '%'); ?>
56
                        <?php } ?></td>
56
                        <?php } ?></td>
57
                    <td class="col_action">
57
                    <td class="col_action">
58
 
58
 
59
                        <a href="#" onclick="return wpsg_country_edit('<?php echo $l['id']; ?>');" class="glyphicon glyphicon-pencil"></a>
59
                        <a href="#" onclick="return wpsg_country_edit('<?php echo $l['id']; ?>');" class="glyphicon glyphicon-pencil"></a>
60
                        <a href="#" class="glyphicon glyphicon-trash"></a>
60
                        <a href="#" onclick="return wpsg_country_remove('<?php echo $l['id']; ?>');" class="glyphicon glyphicon-trash"></a>
61
 
61
 
62
                    </td>
62
                    </td>
63
                </tr>
63
                </tr>
64
            <?php } ?>
64
            <?php } ?>
65
        </tbody>
65
        </tbody>
66
        <tfoot>
66
        <tfoot>
67
            <tr>
67
            <tr>
68
 
68
 
69
                <td class="col_check"><span class="glyphicon glyphicon-trash"></span></td>
69
                <td class="col_check"><!-- <span class="glyphicon glyphicon-trash"></span> --></td>
70
                <td colspan="8">
70
                <td colspan="8">
71
 
71
 
72
                    <input type="submit" name="submit" onclick="return confirm('<?php echo __('Sind Sie sich sicher?', 'wpsg'); ?>');" class="button btn-xs" value="<?php echo __('Markierte Länder löschen', 'wpsg'); ?>" />
72
                    <input type="submit" name="submit" onclick="return confirm('<?php echo __('Sind Sie sich sicher?', 'wpsg'); ?>');" class="button btn-xs" value="<?php echo __('Markierte Länder löschen', 'wpsg'); ?>" />
73
 
73
 
74
                </td>
74
                </td>