Blame view

src/Template/Categories/get_all.ctp 176 Bytes
758a84af   Alexandre   Version: 2.2.4.0
1
2
3
<?php
/**
 * Display all categories
63c3cb16   epallier   Nombreux petits b...
4
5
6
 */
foreach ($categories as $key => $value) :
    ?>
758a84af   Alexandre   Version: 2.2.4.0
7
8
<option value="<?php echo $key; ?>"><?php echo $value; ?></option>
<?php endforeach; ?>