function uc_coupon_display in Ubercart Discount Coupons 6
Same name and namespace in other branches
- 5 uc_coupon.module \uc_coupon_display()
- 7.3 uc_coupon.admin.inc \uc_coupon_display()
- 7.2 uc_coupon.admin.inc \uc_coupon_display()
Display a brief overview of system coupons
Parameters
$view_type: 'active' or 'inactive'
1 string reference to 'uc_coupon_display'
- uc_coupon_menu in ./
uc_coupon.module - Implementation of hook_menu().
File
- ./
uc_coupon.admin.inc, line 94
Code
function uc_coupon_display($view_type = 'active') {
$header = array(
array(
'data' => t('Actions'),
),
array(
'data' => t('Name'),
'field' => 'name',
),
array(
'data' => t('Code'),
'field' => 'code',
'sort' => 'asc',
),
array(
'data' => t('Value'),
'field' => 'value',
),
array(
'data' => t('Created'),
'field' => 'created',
),
array(
'data' => t('Valid from'),
'field' => 'valid_from',
),
array(
'data' => t('Valid until'),
'field' => 'valid_until',
),
);
$result = pager_query('SELECT * FROM {uc_coupons} WHERE status = %d' . tablesort_sql($header), 20, 0, NULL, $view_type == 'inactive' ? 0 : 1);
$rows = array();
while ($coupon = db_fetch_object($result)) {
$coupon->data = $coupon->data ? unserialize($coupon->data) : array();
$rows[] = array(
theme('uc_coupon_actions', $coupon),
check_plain($coupon->name),
check_plain($coupon->code) . ($coupon->bulk ? '* ' . t('(bulk)') : ''),
uc_coupon_format_discount($coupon),
_uc_coupon_format_date($coupon->created, variable_get('uc_date_format_default', 'm/d/Y')),
$coupon->valid_from ? _uc_coupon_format_date($coupon->valid_from, variable_get('uc_date_format_default', 'm/d/Y H:iT')) : '-',
$coupon->valid_until ? _uc_coupon_format_date($coupon->valid_until, variable_get('uc_date_format_default', 'm/d/Y H:iT')) : '-',
);
}
if (count($rows)) {
$output = theme('table', $header, $rows, array(
'width' => '100%',
));
$output .= theme('pager', NULL, 20);
}
else {
switch ($view_type) {
case 'active':
$output = '<p>' . t('There are currently no active coupons in the system.') . '</p>';
break;
case 'inactive':
$output = '<p>' . t('There are currently no inactive coupons in the system.') . '</p>';
break;
}
}
$output .= '<p>' . l(t('Add a new coupon.'), 'admin/store/coupons/add') . '</p>';
return $output;
}