forked from WWBN/AVideo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
daniel
authored and
daniel
committed
Oct 30, 2018
1 parent
a68626b
commit f3428b6
Showing
1,226 changed files
with
138 additions
and
3 deletions.
There are no files selected for viewing
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file.
Empty file.
Empty file.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,77 @@ | ||
<?php | ||
|
||
require_once dirname(__FILE__) . '/../../../videos/configuration.php'; | ||
require_once dirname(__FILE__) . '/../../../objects/bootGrid.php'; | ||
require_once dirname(__FILE__) . '/../../../objects/user.php'; | ||
|
||
class LiveTransmitionHistory extends ObjectYPT { | ||
|
||
protected $id, $title, $description, $key, $created, $modified, $users_id; | ||
|
||
static function getSearchFieldsNames() { | ||
return array('title', 'description'); | ||
} | ||
|
||
static function getTableName() { | ||
return 'live_transmitions_history'; | ||
} | ||
|
||
function getId() { | ||
return $this->id; | ||
} | ||
|
||
function getTitle() { | ||
return $this->title; | ||
} | ||
|
||
function getDescription() { | ||
return $this->description; | ||
} | ||
|
||
function getKey() { | ||
return $this->key; | ||
} | ||
|
||
function getCreated() { | ||
return $this->created; | ||
} | ||
|
||
function getModified() { | ||
return $this->modified; | ||
} | ||
|
||
function getUsers_id() { | ||
return $this->users_id; | ||
} | ||
|
||
function setId($id) { | ||
$this->id = $id; | ||
} | ||
|
||
function setTitle($title) { | ||
$this->title = $title; | ||
} | ||
|
||
function setDescription($description) { | ||
$this->description = $description; | ||
} | ||
|
||
function setKey($key) { | ||
$this->key = $key; | ||
} | ||
|
||
function setCreated($created) { | ||
$this->created = $created; | ||
} | ||
|
||
function setModified($modified) { | ||
$this->modified = $modified; | ||
} | ||
|
||
function setUsers_id($users_id) { | ||
$this->users_id = $users_id; | ||
} | ||
|
||
|
||
|
||
} |
Empty file.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
CREATE TABLE IF NOT EXISTS `live_transmitions_history` ( | ||
`id` INT NOT NULL AUTO_INCREMENT, | ||
`title` VARCHAR(255) NULL, | ||
`description` TEXT NULL, | ||
`key` VARCHAR(255) NOT NULL, | ||
`created` DATETIME NULL, | ||
`modified` DATETIME NULL, | ||
`users_id` INT(11) NOT NULL, | ||
PRIMARY KEY (`id`), | ||
INDEX `fk_live_transmitions_history_users_idx` (`users_id` ASC), | ||
CONSTRAINT `fk_live_transmitions_history_users` | ||
FOREIGN KEY (`users_id`) | ||
REFERENCES `users` (`id`) | ||
ON DELETE CASCADE | ||
ON UPDATE CASCADE) | ||
ENGINE = InnoDB |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
Empty file.
Empty file.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file modified
0
plugin/LiveChat/ratchet/cboden/ratchet/src/Ratchet/AbstractConnectionDecorator.php
100755 → 100644
Empty file.
Empty file.
Empty file modified
0
plugin/LiveChat/ratchet/cboden/ratchet/src/Ratchet/ComponentInterface.php
100755 → 100644
Empty file.
Empty file modified
0
plugin/LiveChat/ratchet/cboden/ratchet/src/Ratchet/ConnectionInterface.php
100755 → 100644
Empty file.
Empty file modified
0
plugin/LiveChat/ratchet/cboden/ratchet/src/Ratchet/Http/CloseResponseTrait.php
100755 → 100644
Empty file.
Empty file modified
0
plugin/LiveChat/ratchet/cboden/ratchet/src/Ratchet/Http/HttpRequestParser.php
100755 → 100644
Empty file.
Empty file modified
0
plugin/LiveChat/ratchet/cboden/ratchet/src/Ratchet/Http/HttpServer.php
100755 → 100644
Empty file.
Empty file modified
0
plugin/LiveChat/ratchet/cboden/ratchet/src/Ratchet/Http/HttpServerInterface.php
100755 → 100644
Empty file.
Empty file modified
0
plugin/LiveChat/ratchet/cboden/ratchet/src/Ratchet/Http/OriginCheck.php
100755 → 100644
Empty file.
Empty file modified
0
plugin/LiveChat/ratchet/cboden/ratchet/src/Ratchet/Http/Router.php
100755 → 100644
Empty file.
Empty file modified
0
plugin/LiveChat/ratchet/cboden/ratchet/src/Ratchet/MessageComponentInterface.php
100755 → 100644
Empty file.
Empty file modified
0
plugin/LiveChat/ratchet/cboden/ratchet/src/Ratchet/MessageInterface.php
100755 → 100644
Empty file.
Empty file modified
0
plugin/LiveChat/ratchet/cboden/ratchet/src/Ratchet/Server/EchoServer.php
100755 → 100644
Empty file.
Empty file modified
0
plugin/LiveChat/ratchet/cboden/ratchet/src/Ratchet/Server/FlashPolicy.php
100755 → 100644
Empty file.
Empty file modified
0
plugin/LiveChat/ratchet/cboden/ratchet/src/Ratchet/Server/IoConnection.php
100755 → 100644
Empty file.
Empty file modified
0
plugin/LiveChat/ratchet/cboden/ratchet/src/Ratchet/Server/IoServer.php
100755 → 100644
Empty file.
Empty file modified
0
plugin/LiveChat/ratchet/cboden/ratchet/src/Ratchet/Server/IpBlackList.php
100755 → 100644
Empty file.
Empty file modified
0
plugin/LiveChat/ratchet/cboden/ratchet/src/Ratchet/Session/Serialize/HandlerInterface.php
100755 → 100644
Empty file.
Empty file modified
0
plugin/LiveChat/ratchet/cboden/ratchet/src/Ratchet/Session/Serialize/PhpBinaryHandler.php
100755 → 100644
Empty file.
Empty file modified
0
plugin/LiveChat/ratchet/cboden/ratchet/src/Ratchet/Session/Serialize/PhpHandler.php
100755 → 100644
Empty file.
Empty file modified
0
plugin/LiveChat/ratchet/cboden/ratchet/src/Ratchet/Session/SessionProvider.php
100755 → 100644
Empty file.
Empty file modified
0
plugin/LiveChat/ratchet/cboden/ratchet/src/Ratchet/Session/Storage/Proxy/VirtualProxy.php
100755 → 100644
Empty file.
Empty file modified
0
plugin/LiveChat/ratchet/cboden/ratchet/src/Ratchet/Session/Storage/VirtualSessionStorage.php
100755 → 100644
Empty file.
Empty file modified
0
plugin/LiveChat/ratchet/cboden/ratchet/src/Ratchet/Wamp/Exception.php
100755 → 100644
Empty file.
Empty file modified
0
plugin/LiveChat/ratchet/cboden/ratchet/src/Ratchet/Wamp/JsonException.php
100755 → 100644
Empty file.
Empty file modified
0
plugin/LiveChat/ratchet/cboden/ratchet/src/Ratchet/Wamp/ServerProtocol.php
100755 → 100644
Empty file.
Empty file modified
0
plugin/LiveChat/ratchet/cboden/ratchet/src/Ratchet/Wamp/Topic.php
100755 → 100644
Empty file.
Empty file modified
0
plugin/LiveChat/ratchet/cboden/ratchet/src/Ratchet/Wamp/TopicManager.php
100755 → 100644
Empty file.
Empty file modified
0
plugin/LiveChat/ratchet/cboden/ratchet/src/Ratchet/Wamp/WampConnection.php
100755 → 100644
Empty file.
Empty file modified
0
plugin/LiveChat/ratchet/cboden/ratchet/src/Ratchet/Wamp/WampServer.php
100755 → 100644
Empty file.
Empty file modified
0
plugin/LiveChat/ratchet/cboden/ratchet/src/Ratchet/Wamp/WampServerInterface.php
100755 → 100644
Empty file.
Empty file modified
0
plugin/LiveChat/ratchet/cboden/ratchet/src/Ratchet/WebSocket/ConnContext.php
100755 → 100644
Empty file.
Empty file modified
0
plugin/LiveChat/ratchet/cboden/ratchet/src/Ratchet/WebSocket/MessageCallableInterface.php
100755 → 100644
Empty file.
Empty file modified
0
plugin/LiveChat/ratchet/cboden/ratchet/src/Ratchet/WebSocket/MessageComponentInterface.php
100755 → 100644
Empty file.
Empty file modified
0
plugin/LiveChat/ratchet/cboden/ratchet/src/Ratchet/WebSocket/WsConnection.php
100755 → 100644
Empty file.
Empty file modified
0
plugin/LiveChat/ratchet/cboden/ratchet/src/Ratchet/WebSocket/WsServer.php
100755 → 100644
Empty file.
Empty file modified
0
plugin/LiveChat/ratchet/cboden/ratchet/src/Ratchet/WebSocket/WsServerInterface.php
100755 → 100644
Empty file.
Empty file modified
0
plugin/LiveChat/ratchet/cboden/ratchet/tests/autobahn/bin/fuzzingserver.php
100755 → 100644
Empty file.
Empty file modified
0
plugin/LiveChat/ratchet/cboden/ratchet/tests/autobahn/fuzzingclient-all.json
100755 → 100644
Empty file.
Empty file modified
0
plugin/LiveChat/ratchet/cboden/ratchet/tests/autobahn/fuzzingclient-profile.json
100755 → 100644
Empty file.
Empty file modified
0
plugin/LiveChat/ratchet/cboden/ratchet/tests/autobahn/fuzzingclient-quick.json
100755 → 100644
Empty file.
Empty file.
Empty file modified
0
...iveChat/ratchet/cboden/ratchet/tests/helpers/Ratchet/AbstractMessageComponentTestCase.php
100755 → 100644
Empty file.
Empty file modified
0
plugin/LiveChat/ratchet/cboden/ratchet/tests/helpers/Ratchet/Mock/Component.php
100755 → 100644
Empty file.
Empty file modified
0
plugin/LiveChat/ratchet/cboden/ratchet/tests/helpers/Ratchet/Mock/Connection.php
100755 → 100644
Empty file.
Empty file modified
0
plugin/LiveChat/ratchet/cboden/ratchet/tests/helpers/Ratchet/Mock/ConnectionDecorator.php
100755 → 100644
Empty file.
Empty file modified
0
plugin/LiveChat/ratchet/cboden/ratchet/tests/helpers/Ratchet/Mock/WampComponent.php
100755 → 100644
Empty file.
Empty file modified
0
plugin/LiveChat/ratchet/cboden/ratchet/tests/helpers/Ratchet/NullComponent.php
100755 → 100644
Empty file.
Empty file modified
0
...LiveChat/ratchet/cboden/ratchet/tests/helpers/Ratchet/Wamp/Stub/WsWampServerInterface.php
100755 → 100644
Empty file.
Empty file modified
0
...tchet/cboden/ratchet/tests/helpers/Ratchet/WebSocket/Stub/WsMessageComponentInterface.php
100755 → 100644
Empty file.
Empty file modified
0
plugin/LiveChat/ratchet/cboden/ratchet/tests/unit/AbstractConnectionDecoratorTest.php
100755 → 100644
Empty file.
Empty file modified
0
plugin/LiveChat/ratchet/cboden/ratchet/tests/unit/Http/HttpRequestParserTest.php
100755 → 100644
Empty file.
Empty file modified
0
plugin/LiveChat/ratchet/cboden/ratchet/tests/unit/Http/HttpServerTest.php
100755 → 100644
Empty file.
Empty file modified
0
plugin/LiveChat/ratchet/cboden/ratchet/tests/unit/Http/OriginCheckTest.php
100755 → 100644
Empty file.
Empty file modified
0
plugin/LiveChat/ratchet/cboden/ratchet/tests/unit/Http/RouterTest.php
100755 → 100644
Empty file.
Empty file modified
0
plugin/LiveChat/ratchet/cboden/ratchet/tests/unit/Server/EchoServerTest.php
100755 → 100644
Empty file.
Empty file modified
0
plugin/LiveChat/ratchet/cboden/ratchet/tests/unit/Server/FlashPolicyComponentTest.php
100755 → 100644
Empty file.
Empty file modified
0
plugin/LiveChat/ratchet/cboden/ratchet/tests/unit/Server/IoConnectionTest.php
100755 → 100644
Empty file.
Empty file modified
0
plugin/LiveChat/ratchet/cboden/ratchet/tests/unit/Server/IoServerTest.php
100755 → 100644
Empty file.
Empty file modified
0
plugin/LiveChat/ratchet/cboden/ratchet/tests/unit/Server/IpBlackListComponentTest.php
100755 → 100644
Empty file.
Empty file modified
0
plugin/LiveChat/ratchet/cboden/ratchet/tests/unit/Session/Serialize/PhpHandlerTest.php
100755 → 100644
Empty file.
Empty file modified
0
plugin/LiveChat/ratchet/cboden/ratchet/tests/unit/Session/SessionComponentTest.php
100755 → 100644
Empty file.
Empty file modified
0
...veChat/ratchet/cboden/ratchet/tests/unit/Session/Storage/VirtualSessionStoragePDOTest.php
100755 → 100644
Empty file.
Empty file modified
0
plugin/LiveChat/ratchet/cboden/ratchet/tests/unit/Wamp/ServerProtocolTest.php
100755 → 100644
Empty file.
Empty file modified
0
plugin/LiveChat/ratchet/cboden/ratchet/tests/unit/Wamp/TopicManagerTest.php
100755 → 100644
Empty file.
Empty file modified
0
plugin/LiveChat/ratchet/cboden/ratchet/tests/unit/Wamp/TopicTest.php
100755 → 100644
Empty file.
Empty file modified
0
plugin/LiveChat/ratchet/cboden/ratchet/tests/unit/Wamp/WampConnectionTest.php
100755 → 100644
Empty file.
Empty file modified
0
plugin/LiveChat/ratchet/cboden/ratchet/tests/unit/Wamp/WampServerTest.php
100755 → 100644
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file modified
0
plugin/LiveChat/ratchet/evenement/evenement/doc/02-plugin-system.md
100755 → 100644
Empty file.
Empty file modified
0
plugin/LiveChat/ratchet/evenement/evenement/examples/benchmark-emit-no-arguments.php
100755 → 100644
Empty file.
Empty file modified
0
plugin/LiveChat/ratchet/evenement/evenement/examples/benchmark-emit-once.php
100755 → 100644
Empty file.
Empty file modified
0
plugin/LiveChat/ratchet/evenement/evenement/examples/benchmark-emit-one-argument.php
100755 → 100644
Empty file.
Empty file modified
0
plugin/LiveChat/ratchet/evenement/evenement/examples/benchmark-emit.php
100755 → 100644
Empty file.
Empty file.
Empty file modified
0
plugin/LiveChat/ratchet/evenement/evenement/src/Evenement/EventEmitter.php
100755 → 100644
Empty file.
Empty file modified
0
plugin/LiveChat/ratchet/evenement/evenement/src/Evenement/EventEmitterInterface.php
100755 → 100644
Empty file.
Empty file modified
0
plugin/LiveChat/ratchet/evenement/evenement/src/Evenement/EventEmitterTrait.php
100755 → 100644
Empty file.
Empty file modified
0
plugin/LiveChat/ratchet/evenement/evenement/tests/Evenement/Tests/EventEmitterTest.php
100755 → 100644
Empty file.
Empty file modified
0
plugin/LiveChat/ratchet/evenement/evenement/tests/Evenement/Tests/Listener.php
100755 → 100644
Empty file.
Empty file modified
0
plugin/LiveChat/ratchet/evenement/evenement/tests/Evenement/Tests/functions.php
100755 → 100644
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file modified
0
plugin/LiveChat/ratchet/guzzlehttp/psr7/src/DroppingStream.php
100755 → 100644
Empty file.
Empty file.
Empty file.
Empty file modified
0
plugin/LiveChat/ratchet/guzzlehttp/psr7/src/LazyOpenStream.php
100755 → 100644
Empty file.
Empty file.
Empty file.
Empty file modified
0
plugin/LiveChat/ratchet/guzzlehttp/psr7/src/MultipartStream.php
100755 → 100644
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file modified
0
plugin/LiveChat/ratchet/guzzlehttp/psr7/src/StreamDecoratorTrait.php
100755 → 100644
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Oops, something went wrong.