Skip to content
Discussion options

You must be logged in to vote

Ganz oben in mod_anystores_list:

<?php

    $arrStores = [];
    $arrIds    = array_rand($this->stores, 3);

    foreach ( $arrIds as $intId )
    {
        $arrStores[] = $this->stores[$intId];
    }

    $this->stores = $arrStores;

?>

Das holt 3 zufällige IDs aus dem Array. Erstellt ein temporäres Array mit den zufälligen Standorten und überschreibt das normale Standort-Array damit der Rest des Templates nicht angepasst werden muss.

Das LIMIT-Attribut wird bisher nur bei Suchabfragen berücksichtigt, und spielt deswegen keine Rolle.

Replies: 3 comments

Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Answer selected by Tastaturberuf
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
2 participants
Converted from issue

This discussion was converted from issue #64 on October 16, 2021 15:40.