aboutsummaryrefslogtreecommitdiff
path: root/model/StreamList.php
diff options
context:
space:
mode:
authorMaZderMind2015-03-08 13:42:58 +0100
committerMaZderMind2015-03-14 13:46:47 +0100
commitcb48ba9b7068302414b18435505a041d22bd9e4b (patch)
tree9521126f748b090a65ca9832cb218f71b5213b1b /model/StreamList.php
parent844a7d53f2d78bafba479c0d931277246ade61de (diff)
Introduce Models abstracting the Config away from Views & Templates
Diffstat (limited to 'model/StreamList.php')
-rw-r--r--model/StreamList.php28
1 files changed, 28 insertions, 0 deletions
diff --git a/model/StreamList.php b/model/StreamList.php
new file mode 100644
index 0000000..4fd035e
--- /dev/null
+++ b/model/StreamList.php
@@ -0,0 +1,28 @@
+<?php
+
+class StreamList implements AggregateIterator {
+ private $streams = array();
+
+ public function getIterator() {
+ return new ArrayIterator($this->streams);
+ }
+
+
+ public function hasTranslation() {
+ }
+
+ public function hasRTMP() {
+ }
+
+ public function hasHLS() {
+ }
+
+ public function hasWebM() {
+ }
+
+ public function hasHD() {
+ }
+
+ public function hasSD() {
+ }
+}