-
Notifications
You must be signed in to change notification settings - Fork 1
/
cron.php
46 lines (42 loc) · 2.36 KB
/
cron.php
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
<?php
/**
+-------------------------------------------------------------------------+
| RubioTV - A domestic IPTV Web app browser |
| Version 1.3.0 |
| |
| This program is free software: you can redistribute it and/or modify |
| it under the terms of the GNU General Public License as published by |
| the Free Software Foundation. |
| |
| This file forms part of the RubioTV software. |
| |
| If you wish to use this file in another project or create a modified |
| version that will not be part of the RubioTV Software, you |
| may remove the exception above and use this source code under the |
| original version of the license. |
| |
| This program is distributed in the hope that it will be useful, |
| but WITHOUT ANY WARRANTY; without even the implied warranty of |
| MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| GNU General Public License for more details. |
| |
| You should have received a copy of the GNU General Public License |
| along with this program. If not, see http://www.gnu.org/licenses/. |
| |
+-------------------------------------------------------------------------+
| Author: Jaime Rubio <jaime@rubiogafsi.com> |
+-------------------------------------------------------------------------+
*/
define('_TVEXEC', 1);
ini_set('display_errors', '1');
ini_set('display_startup_errors', '1');
error_reporting(E_ALL);
define('TV_BASE', dirname(__FILE__));
require_once TV_BASE . '/includes/defines.php';
// Load Factory
require_once TV_INCLUDES . '/factory.php';
$factory = new RubioTV\Framework\Factory();
// Load EPG
$epg = new RubioTV\Framework\EPG();
// Trigger the cron
$epg->Cron();