LaurentTreguier 9 лет назад
Родитель
Сommit
d513e019de
5 измененных файлов: 6 добавлений и 13 удалений
  1. 2
    1
      .gitignore
  2. 1
    3
      controllers/data.php
  3. 1
    3
      controllers/files.php
  4. 1
    3
      controllers/login.php
  5. 1
    3
      controllers/promo.php

+ 2
- 1
.gitignore Просмотреть файл

@@ -1,2 +1,3 @@
1 1
 .idea/
2
-*.swp
2
+*.swp
3
+.tags

+ 1
- 3
controllers/data.php Просмотреть файл

@@ -2,7 +2,7 @@
2 2
 
3 3
 function data()
4 4
 {
5
-    return html("data.html.php");
5
+    return html('data.html.php');
6 6
 }
7 7
 
8 8
 function data_extract()
@@ -14,5 +14,3 @@ function alter_data()
14 14
 {
15 15
     // TODO
16 16
 }
17
-
18
-?>

+ 1
- 3
controllers/files.php Просмотреть файл

@@ -2,7 +2,7 @@
2 2
 
3 3
 function files()
4 4
 {
5
-    return html("files.html.php");
5
+    return html('files.html.php');
6 6
 }
7 7
 
8 8
 function add_file()
@@ -19,5 +19,3 @@ function delete_file()
19 19
 {
20 20
     // TODO
21 21
 }
22
-
23
-?>

+ 1
- 3
controllers/login.php Просмотреть файл

@@ -2,12 +2,10 @@
2 2
 
3 3
 function login()
4 4
 {
5
-    return html("login.html.php");
5
+    return html('login.html.php');
6 6
 }
7 7
 
8 8
 function check_login()
9 9
 {
10 10
     // TODO
11 11
 }
12
-
13
-?>

+ 1
- 3
controllers/promo.php Просмотреть файл

@@ -2,7 +2,7 @@
2 2
 
3 3
 function promo()
4 4
 {
5
-    return html("promo.html.php");
5
+    return html('promo.html.php');
6 6
 }
7 7
 
8 8
 function add_promo()
@@ -19,5 +19,3 @@ function delete_promo()
19 19
 {
20 20
     // TODO
21 21
 }
22
-
23
-?>