소스 검색

Send promos to document.html.php for dropdown list

LaurentTreguier 10 년 전
부모
커밋
b0fba66689
1개의 변경된 파일2개의 추가작업 그리고 0개의 파일을 삭제
  1. 2
    0
      controllers/document.php

+ 2
- 0
controllers/document.php 파일 보기

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