1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
|
Index: trunk/inc/monitor.class.php
===================================================================
--- trunk/inc/monitor.class.php (revision 322)
+++ trunk/inc/monitor.class.php (revision 323)
@@ -41,6 +41,14 @@
+ function defineAllTabs($options=array()) {
+
+ $onglets = parent::defineAllTabs($options);
+ unset($onglets['Item_Problem$1']); // TODO add method to print linked Problems
+ return $onglets;
+ }
+
+
static function pdfMain(PluginPdfSimplePDF $pdf, Monitor $item) {
global $LANG;
Index: trunk/inc/software.class.php
===================================================================
--- trunk/inc/software.class.php (revision 322)
+++ trunk/inc/software.class.php (revision 323)
@@ -104,6 +104,7 @@
$onglets = parent::defineAllTabs($options);
unset($onglets['Software$1']); // Merge tab can't be exported
+ unset($onglets['Item_Problem$1']); // TODO add method to print linked Problems
return $onglets;
}
Index: trunk/inc/peripheral.class.php
===================================================================
--- trunk/inc/peripheral.class.php (revision 322)
+++ trunk/inc/peripheral.class.php (revision 323)
@@ -40,7 +40,14 @@
}
+ function defineAllTabs($options=array()) {
+ $onglets = parent::defineAllTabs($options);
+ unset($onglets['Item_Problem$1']); // TODO add method to print linked Problems
+ return $onglets;
+ }
+
+
static function pdfMain(PluginPdfSimplePDF $pdf, Peripheral $item) {
global $LANG;
Index: trunk/inc/networkequipment.class.php
===================================================================
--- trunk/inc/networkequipment.class.php (revision 322)
+++ trunk/inc/networkequipment.class.php (revision 323)
@@ -40,6 +40,14 @@
}
+ function defineAllTabs($options=array()) {
+
+ $onglets = parent::defineAllTabs($options);
+ unset($onglets['Item_Problem$1']); // TODO add method to print linked Problems
+ return $onglets;
+ }
+
+
static function pdfMain(PluginPdfSimplePDF $pdf, NetworkEquipment $item) {
global $LANG;
Index: trunk/inc/phone.class.php
===================================================================
--- trunk/inc/phone.class.php (revision 322)
+++ trunk/inc/phone.class.php (revision 323)
@@ -40,7 +40,14 @@
}
+ function defineAllTabs($options=array()) {
+ $onglets = parent::defineAllTabs($options);
+ unset($onglets['Item_Problem$1']); // TODO add method to print linked Problems
+ return $onglets;
+ }
+
+
static function pdfMain(PluginPdfSimplePDF $pdf, Phone $item) {
global $LANG;
Index: trunk/inc/printer.class.php
===================================================================
--- trunk/inc/printer.class.php (revision 322)
+++ trunk/inc/printer.class.php (revision 323)
@@ -40,6 +40,14 @@
}
+ function defineAllTabs($options=array()) {
+
+ $onglets = parent::defineAllTabs($options);
+ unset($onglets['Item_Problem$1']); // TODO add method to print linked Problems
+ return $onglets;
+ }
+
+
static function pdfMain(PluginPdfSimplePDF $pdf, Printer $printer) {
global $LANG;
|