Modify ↓
Opened 6 years ago
Last modified 6 years ago
#1686 new Neues Feature
Neuer Hook: Artikelbilder - /admin/includes/modules/product_images.php
| Reported by: | Owned by: | somebody | |
|---|---|---|---|
| Priority: | normal | Milestone: | modified-shop-2.1.0.0 |
| Component: | Admin | Version: | 2.0.4.2 |
| Keywords: | Cc: | ||
| Blocked By: | Blocking: |
Description
Vorschlag für einen neuen Hookpoint zur Erweiterung der Produktbilder Verwaltung im Adminbereich.
- /admin/includes/modules/product_images.php
Suchen nach:
<tr>
<td class="dataTableConfig col-left"><?php echo TEXT_DELETE; ?></td>
<td class="dataTableConfig col-middle"><?php echo xtc_draw_checkbox_field('del_pic', $pInfo->products_image); ?></td>
</tr>
DANACH einfügen:
<?php foreach(auto_include(DIR_FS_ADMIN.'includes/extra/modules/new_product/products_image/','php') as $file) require ($file); ?>
Suchen nach:
<tr>
<td class="dataTableConfig col-left"><?php echo TEXT_DELETE; ?></td>
<td class="dataTableConfig col-middle"><?php echo xtc_draw_checkbox_field('del_mo_pic[]', (isset($mo_images[$i]['image_name']) ? $mo_images[$i]['image_name'] : '')); ?></td>
</tr>
DANACH einfügen:
<?php foreach(auto_include(DIR_FS_ADMIN.'includes/extra/modules/new_product/products_mo_images/','php') as $file) require ($file); ?>
- Neue Ordner erstellen
/admin/includes/extra/modules/new_product/products_image/
/admin/includes/extra/modules/new_product/products_mo_images/
Attachments (0)
Change History (1)
comment:1 by , 6 years ago
| Milestone: | modified-shop-2.0.5.0 → modified-shop-2.1.0.0 |
|---|---|
| Priority: | hoch → normal |
Note:
See TracTickets
for help on using tickets.
