Ver código fonte

Send promos to document.html.php for dropdown list

LaurentTreguier 9 anos atrás
pai
commit
b0fba66689
1 arquivos alterados com 2 adições e 0 exclusões
  1. 2
    0
      controllers/document.php

+ 2
- 0
controllers/document.php Ver arquivo

@@ -1,11 +1,13 @@
1 1
 <?php
2 2
 
3 3
 require_once(dirname(__DIR__) . "/models/document.class.php");
4
+require_once(dirname(__DIR__) . "/models/promo.class.php");
4 5
 
5 6
 function document()
6 7
 {
7 8
     set("title", "Titre");
8 9
     set("data", Document::getAll());
10
+    set("promos", Promo::getAll());
9 11
     
10 12
     return html("list.html.php", "layout.html.php");
11 13
 }