1 | 1 |
new file mode 100644 |
... | ... |
@@ -0,0 +1,36 @@ |
1 |
+<?php |
|
2 |
+ |
|
3 |
+/** |
|
4 |
+* References for Contao |
|
5 |
+ * |
|
6 |
+ * Copyright (c) 2014 Benjamin Roth [http://www.esales-media.de] |
|
7 |
+ * |
|
8 |
+ * @package eSM_clients |
|
9 |
+ * @link http://www.esales-media.de |
|
10 |
+ * @license commercial |
|
11 |
+*/ |
|
12 |
+ |
|
13 |
+ |
|
14 |
+/** |
|
15 |
+ * Run in a custom namespace, so the class can be replaced |
|
16 |
+ */ |
|
17 |
+namespace eSM_clients; |
|
18 |
+ |
|
19 |
+ |
|
20 |
+/** |
|
21 |
+ * Reads and writes projects |
|
22 |
+ * |
|
23 |
+ * @package Models |
|
24 |
+ * @author Benjamin Roth <http://www.esales-media.de> |
|
25 |
+ * @copyright eSales Media 2014 |
|
26 |
+ */ |
|
27 |
+class EsmClientsProjectsModel extends \Model |
|
28 |
+{ |
|
29 |
+ |
|
30 |
+ /** |
|
31 |
+ * Table name |
|
32 |
+ * @var string |
|
33 |
+ */ |
|
34 |
+ protected static $strTable = 'tl_esm_clients_projects'; |
|
35 |
+ |
|
36 |
+} |