Subversion Repositories wpShopGermany4

Rev

Rev 6675 | Rev 7004 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
1144 daniel 1
<?php
2
 
3
	/**
4
	 * Template für die Übersicht der Gutschein
5
	 */
6
 
7
?>
5753 daniel 8
<div class="wpsg_voucher" id="wpsg-bs">
5552 thomas 9
 
5753 daniel 10
    <nav class="navbar navbar-default">
1676 daniel 11
 
5552 thomas 12
		<div class="container-fluid">
13
			<div class="navbar-header">
14
				<a class="navbar-brand" href="#"><?php echo __('wpShopGermany', 'wpsg'); ?></a>
15
			</div>
5753 daniel 16
			<div class="collapse navbar-collapse" id="bs-customer-navbar-collapse-1">
5552 thomas 17
				<ul class="nav navbar-nav">
6680 hartmut 18
					<li role="presentation" class="wpsg-voucher-tab-a active"><a href="#" onclick="return false;"><?php echo __("Gutscheinverwaltung", "wpsg"); ?></a></li>
19
					<li role="presentation" class="wpsg-voucher-tab-a wpsg_showhide_filter <?php echo ((($this->view['hasFilter']) && (wpsg_getStr($this->view['arFilter']['s']) != ''))?'active':''); ?>" id="wpsg-voucher-tab-0"><a href="#" onclick="return false;"><span class="glyphicon glyphicon-search"></span><?php echo __("Suche", "wpsg"); ?></a></li>
5753 daniel 20
                    <li role="presentation" class="<?php echo ((wpsg_isSizedString($_REQUEST['action'], 'add'))?'active':''); ?>"><a href="<?php echo WPSG_URL_WP; ?>wp-admin/admin.php?page=wpsg-Voucher&action=add"><span class="glyphicon glyphicon-plus"></span><?php echo __("Hinzufügen", "wpsg"); ?></a></li>
5552 thomas 21
				</ul>
22
				<ul class="nav navbar-nav navbar-right">
5753 daniel 23
                    <li role="presentation" class="<?php echo ((wpsg_isSizedString($_REQUEST['action'], 'import'))?'active':''); ?>"><a href="<?php echo WPSG_URL_WP; ?>wp-admin/admin.php?page=wpsg-Voucher&action=import&noheader=1"><span class="glyphicon glyphicon-import"></span><?php echo __("Import", "wpsg"); ?></a></li>
24
					<?php if (wpsg_isSizedArray($this->view['arData'])) { ?>
25
					<li role="presentation" class="<?php echo ((wpsg_isSizedString($_REQUEST['action'], 'export'))?'active':''); ?>"><a href="<?php echo WPSG_URL_WP; ?>wp-admin/admin.php?page=wpsg-Voucher&action=export&noheader=1"><span class="glyphicon glyphicon-export"></span><?php echo __("Export", "wpsg"); ?></a></li>
26
					<?php } ?>
27
				</ul>
5552 thomas 28
			</div>
29
		</div>
5753 daniel 30
 
6680 hartmut 31
        <div class="wpsg-filter wpsg-customer-tab wpsg-voucher-tab-0 container-fluid form-horizontal" style="display:<?php echo ((($this->view['hasFilter'] === true) && ($this->view['arFilter']['s'] != ''))?'block':'none'); ?>;">
5753 daniel 32
            <div class="row">
5552 thomas 33
				<div class="col-lg-4">
34
					<form method="post" id="filter_form">
5753 daniel 35
 
36
						<input id="wpsg_seite" type="hidden" name="filter[page]" value="<?php echo @$this->view['page']; ?>" class="current-page" />
37
                        <input id="wpsg_order" type="hidden" name="filter[order]" value="<?php echo @$this->view['arFilter']['order']; ?>" />
38
						<input id="wpsg_ascdesc" type="hidden" name="filter[ascdesc]" value="<?php echo @$this->view['arFilter']['ascdesc']; ?>" />
39
 
40
						<?php echo wpsg_drawForm_Input('filter[s]', __('Suchfeld', 'wpsg'), wpsg_getStr($this->view['arFilter']['s'])); ?>
41
 
42
						<?php echo wpsg_drawForm_SubmitButton(__('Gutscheine suchen')); ?><br />
6680 hartmut 43
						<input type="hidden" id="filterstatus" name="filter[status]" value="<?php echo @$this->view['arFilter']['status']; ?>" />
5753 daniel 44
 
45
					</form>
5552 thomas 46
				</div>
5753 daniel 47
			</div>
48
        </div>
49
 
50
    </nav>
51
 
6680 hartmut 52
    <div class="wpsg_msg_wrap"><hr class="wp-header-end wpsg-wp-header-end"/></div>
53
 
54
	<div class="pagination_wrap wpsg_status_link_wrap">
55
 
56
		<ul class="pagination">
57
			<?php foreach ($this->view['arStatus'] as $status_key => $status_info) { ?>
58
			<li class="<?php echo ((wpsg_getStr($this->view['arFilter']['status']) == $status_key)?'active':''); ?>"><a href="#" onclick="return wpsg_setFilterStatus('<?php echo $status_key; ?>');"><?php echo wpsg_translate(__('#1# <span>(#2#)<span>', 'wpsg'), $status_info['label'], $status_info['count']); ?></a></li>
59
			<?php } ?>
60
		</ul>
61
 
62
	</div>
6444 daniel 63
 
64
    <?php $this->render(WPSG_PATH_VIEW.'/admin/pager.phtml'); ?>
5753 daniel 65
 
66
	<div class="content">
1676 daniel 67
 
5753 daniel 68
        <?php if (is_array($this->view['arData']) && sizeof($this->view['arData']) > 0) { ?>
1924 daniel 69
 
5753 daniel 70
            <form method="POST" action="<?php echo WPSG_URL_WP; ?>wp-admin/admin.php?page=wpsg-Voucher&action=index&noheader=1">
71
                <table class="table wpsg-table-order table-bordered table-hover table-striped wpsg-table-customer">
72
                    <thead>
73
                        <tr>
74
                            <th class="col_checkbox"><input type="checkbox" onclick="jQuery('.col_set_checkbox').each(function() { jQuery(this).prop('checked', !jQuery(this).prop('checked')); } );" /></th>
75
                            <th class="wpsg_order col_code" data-order="code"><?php echo __("Code", 'wpsg'); ?></th>
76
                            <th class="wpsg_order col_start" data-order="start_date"><?php echo __("Start", 'wpsg'); ?></th>
77
                            <th class="wpsg_order col_end" data-order="end_date"><?php echo __("Ende", 'wpsg'); ?></th>
78
                            <th class="wpsg_order col_value" data-order="value"><?php echo __("Wert", 'wpsg'); ?></th>
79
                            <th class="wpsg_order col_status" data-order="status"><?php echo __("Status", 'wpsg'); ?></th>
80
                        </tr>
81
                    </thead>
82
                    <tbody>
83
                        <?php foreach ($this->view['arData'] as $oVoucher) { ?>
84
                        <tr>
85
                            <td class="col_checkbox">
86
 
87
                                <input class="col_set_checkbox" value="<?php echo $oVoucher->id; ?>" name="wpsg_multido[]" type="checkbox" />
88
 
89
                            </td>
90
                            <td class="col_code"><?php echo $oVoucher->code; ?></td>
91
                            <td class="col_start"><?php echo wpsg_formatTimestamp($oVoucher->start_date); ?></td>
92
                            <td class="col_end"><?php echo wpsg_formatTimestamp($oVoucher->end_date); ?></td>
93
                            <td class="col_value"><?php
94
 
95
                                if ($oVoucher->calc_typ == 'w') echo wpsg_ff($oVoucher->value, $this->get_option('wpsg_currency'));
96
                                else if ($oVoucher->calc_typ == 'p') echo wpsg_ff($oVoucher->value, '%');
97
 
98
                            ?></td>
99
                            <td class="col_status">
100
 
101
                                <?php $comment = $oVoucher->comment; if (wpsg_isSizedString($comment)) { ?>
6005 hartmut 102
                                <a title="<?php echo __("Kommentar (Admin): ", "wpsg").htmlspecialchars($comment); ?>" onclick="return false;" class="glyphicon glyphicon-question-sign admincomment" href="#"></a>
5753 daniel 103
                                <?php } ?>
104
 
105
                                <?php echo $oVoucher->getStatusLabel(); ?>
106
 
107
                                <?php $used = $oVoucher->getUsed(); if (wpsg_isSizedInt($used)) { ?>
108
                                <?php echo wpsg_translate(__('#1# mal benutzt.', 'wpsg'), $used); ?>
109
                                <?php } ?>
110
 
111
                                <?php if ($oVoucher->multi === '1') { ?>
112
                                <span title="<?php echo __('Mehrfach benutzbar', 'wpsg'); ?>">&nbsp;[M]</span>
113
                                <?php } ?>
114
 
115
                            </td>
116
                        </tr>
117
                        <?php } ?>
118
                    </tbody>
119
                </table>
120
 
121
                 <div class="alignleft actions">
122
 
123
                    <input onclick="if (!confirm('<?php echo __('Sind Sie sich sicher?', 'wpsg'); ?>')) return false;" type="submit" value="<?php echo __('Markierte Gutscheine löschen', 'wpsg'); ?>" class="button-secondary action" id="doaction" name="submit-multidelete" />
124
 
125
                </div>
6680 hartmut 126
			</form>
127
 
5753 daniel 128
 
6680 hartmut 129
        <?php $this->render(WPSG_PATH_VIEW.'/admin/pager.phtml'); ?>
5753 daniel 130
 
131
        <?php } else { ?>
132
 
133
            <?php echo wpsg_drawForm_AdminboxStart(); ?>
134
    		<?php echo __('Keine Gutscheine in der Datenbank.', 'wpsg'); ?>
135
            <?php echo wpsg_drawForm_AdminboxEnd(); ?>
136
 
137
        <?php } ?>
138
 
139
    </div>
140
 
1599 daniel 141
</div>
142
 
1676 daniel 143
<script type="text/javascript">/* <![CDATA[ */
1599 daniel 144
 
5753 daniel 145
    <?php if (wpsg_isSizedString($this->view['arFilter']['order']) && wpsg_isSizedString($this->view['arFilter']['ascdesc'])) { ?>
146
    jQuery('th[data-order="<?php echo $this->view['arFilter']['order']; ?>"]').addClass('wpsg_order_<?php echo strtolower($this->view['arFilter']['ascdesc']); ?>');
147
    <?php } ?>
148
 
6680 hartmut 149
	function wpsg_setFilterStatus(state)
150
	{
151
 
152
		jQuery('#filterstatus').val(state);
153
 
154
		jQuery('#seite').val(1);
155
		jQuery('#filter_form').submit();
156
 
157
		return false;
158
 
159
	}
160
 
5753 daniel 161
	function goPage(page)
1599 daniel 162
	{
163
 
6152 thomas 164
		//if (page <= 0 || page == <?php echo $this->view['arFilter']['page']; ?> || page > <?php echo $this->view['pages']; ?>) return;
1599 daniel 165
 
5753 daniel 166
		jQuery('#wpsg_seite').val(page);
167
		jQuery('#filter_form').submit();
1599 daniel 168
 
5753 daniel 169
		return false;
170
 
171
	} // function goPage(page)
172
 
6680 hartmut 173
    jQuery(document).ready(function() {
5753 daniel 174
 
6680 hartmut 175
        jQuery('.wpsg-order-tab-mods').bind('click', function() {
176
 
177
            if (jQuery(this).hasClass('active'))
178
            {
179
 
180
                jQuery(this).removeClass('active');
181
                jQuery('.' + jQuery(this).attr("id")).slideUp(250);
182
 
183
            }
184
            else
185
            {
186
 
187
                jQuery(this).addClass('active');
188
                jQuery('.' + jQuery(this).attr("id")).slideDown(250);
189
 
190
            }
191
 
192
            return false;
193
 
194
        } );
195
 
196
    } );
197
 
1676 daniel 198
/* ]]> */</script>