File tree 1 file changed +34
-6
lines changed
1 file changed +34
-6
lines changed Original file line number Diff line number Diff line change @@ -17,6 +17,15 @@ class NineGagBridge extends BridgeAbstract {
17
17
'Fresh ' => 'fresh ' ,
18
18
),
19
19
),
20
+ 'video ' => array (
21
+ 'name ' => 'Filter Video ' ,
22
+ 'type ' => 'list ' ,
23
+ 'values ' => array (
24
+ 'NotFiltred ' => 'none ' ,
25
+ 'VideoFiltred ' => 'without ' ,
26
+ 'VideoOnly ' => 'only ' ,
27
+ ),
28
+ ),
20
29
'p ' => array (
21
30
'name ' => 'Pages ' ,
22
31
'type ' => 'number ' ,
@@ -121,13 +130,32 @@ public function collectData() {
121
130
}
122
131
123
132
foreach ($ posts as $ post ) {
124
- $ item ['uri ' ] = $ post ['url ' ];
125
- $ item ['title ' ] = $ post ['title ' ];
126
- $ item ['content ' ] = self ::getContent ($ post );
127
- $ item ['categories ' ] = self ::getCategories ($ post );
128
- $ item ['timestamp ' ] = self ::getTimestamp ($ post );
133
+ $ AvoidElement = false ;
134
+ switch ($ this ->getInput ('video ' )) {
135
+ case 'without ' :
136
+ if ($ post ['type ' ] === 'Animated ' ) {
137
+ $ AvoidElement = true ;
138
+ }
139
+ break ;
140
+ case 'only ' :
141
+ echo $ post ['type ' ];
142
+ if ($ post ['type ' ] !== 'Animated ' ) {
143
+ $ AvoidElement = true ;
144
+ }
145
+ break ;
146
+ case 'none ' : default :
147
+ break ;
148
+ }
149
+
150
+ if (!$ AvoidElement ) {
151
+ $ item ['uri ' ] = $ post ['url ' ];
152
+ $ item ['title ' ] = $ post ['title ' ];
153
+ $ item ['content ' ] = self ::getContent ($ post );
154
+ $ item ['categories ' ] = self ::getCategories ($ post );
155
+ $ item ['timestamp ' ] = self ::getTimestamp ($ post );
129
156
130
- $ this ->items [] = $ item ;
157
+ $ this ->items [] = $ item ;
158
+ }
131
159
}
132
160
}
133
161
You can’t perform that action at this time.
0 commit comments