Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Next »

Textfeld:

        <config>
            <key>XT_BESTSELLER_PRODUCTS_PAGE_LIMIT</key>
            <type>textfield</type>
            <value>25</value>
            <de>
                <title>Anzahl Artikel</title>
            </de>
            <en>
                <title>Anzahl Artikel</title>
            </en>
        </config>

Erstellt ein klassisches Textfeld mit dem default-Wert "25", beschriftet wird die Option mit "Anzahl Artikel" bzw. "Anzahl Artikel" je nach Sprache des Backend.

Innerhalb des Codes kann auf die Option mit der Konstante XT_BESTSELLER_PRODUCTS_PAGE_LIMIT zugegriffen werden.

z.B.: /plugins/xt_bestseller_products/pages/xt_bestseller_products.php

/plugins/xt_bestseller_products/pages/xt_bestseller_products.php
    if (!empty($params['limit'])) {
        $limit = (int)$params['limit'];
    } else {
        $limit = XT_BESTSELLER_PRODUCTS_PAGE_LIMIT;
    }
  • No labels