dbxapp 4.1.3
CMS, Shop, Workflows und modulare Geschäftsanwendungen
Loading...
Searching...
No Matches
shop-product-group_en.fd.php
Go to the documentation of this file.
1<?php
2$messages = array();
3$messages['save_success'] = 'Data was saved';
4$messages['save_succeass'] = $messages['save_success'];
5$messages['save_error'] = 'Data could not be saved';
6
7require dirname(__DIR__) . '/dd/shopProductGroup.dd.php';
8
9$fdLabels = array(
10 'create_date' => 'Created',
11 'create_uid' => 'Created by',
12 'update_date' => 'Updated',
13 'update_uid' => 'Updated by',
14 'parent_id' => 'Parent group',
15 'group_key' => 'Group key',
16 'title' => 'Group',
17 'description' => 'Description',
18 'tax_class' => 'VAT rate',
19 'default_tax_rate' => 'Default VAT %',
20 'default_shipping_gross' => 'Default gross shipping',
21 'display_variant' => 'Display',
22 'card_template' => 'Card template',
23 'detail_template' => 'Detail template',
24 'gallery_template' => 'Gallery template',
25 'gallery_visible_count' => 'Visible gallery images',
26 'gallery_image_size' => 'Gallery image size',
27 'gallery_lightbox_width' => 'Lightbox width',
28 'gallery_overflow' => 'Gallery overflow',
29 'gallery_click' => 'Gallery click',
30 'attribute_notes' => 'Attribute notes',
31 'ebay_category_id' => 'eBay category',
32 'kleinanzeigen_category_id' => 'Classified ads category',
33 'mobile_category_id' => 'mobile.de category',
34 'active' => 'Active',
35 'sorter' => 'Sort order',
36);
37foreach ($fields as &$fdField) {
38 if (isset($fdLabels[$fdField['name']])) {
39 $fdField['label'] = $fdLabels[$fdField['name']];
40 }
41}
42unset($fdField, $fdLabels);
43?>
$messages
Definition config.fd.php:2