homepage, categories pages; javascript and stylesheets renamed to js and css resp.
[living-lab-site.git] / application / config / p2p-tube.php
1 <?php  if ( ! defined('BASEPATH')) exit('No direct script access allowed');
2
3 // P2P-Tube specific configuration files
4
5 /*
6 |--------------------------------------------------------------------------
7 | Site Name
8 |--------------------------------------------------------------------------
9 |
10 | Sets the name of the site. It can be used for example in pages title.
11 |
12 */
13 $config['site_name'] = 'P2P-Next UPB LivingLab';
14
15 /*
16 |--------------------------------------------------------------------------
17 | Default Stylesheet
18 |--------------------------------------------------------------------------
19 |
20 | Sets the default CSS that is going to be automatically added on any HTML
21 | page generated with 'application/views/html_begin.php' view and
22 | HTML_head_params library.
23 |
24 | Do not include any path to the file! 'css/' is going to be used.
25 |
26 | Leave blank for no default stylesheet.
27 |
28 */
29 $config['default_css'] = 'default.css';
30
31 /*
32 |--------------------------------------------------------------------------
33 | Default Javascript
34 |--------------------------------------------------------------------------
35 |
36 | Sets the default Javascript that is going to be automatically added in any
37 | HTML page generated with 'application/views/html_begin.php' view and
38 | HTML_head_params library.
39 |
40 | Do not include any path to the file! 'js/' is going to be used.
41 |
42 | Leave blank for no default javascript.
43 |
44 */
45 $config['default_js'] = '';
46
47 /*
48 |--------------------------------------------------------------------------
49 | Default Video File Extension
50 |--------------------------------------------------------------------------
51 |
52 | Sets the default video file extension, which must be set without '.' prefix. 
53 | This extension is going to be added to the `name` field from the DB in
54 | order to deduce the video file name if not stated otherwise in the format.
55 | Possible values:
56 |
57 |       ogv
58 |       ogg
59 |
60 */
61 $config['default_video_ext'] = 'ogv';
62
63 /*
64 |--------------------------------------------------------------------------
65 | Default Torrent File Extension
66 |--------------------------------------------------------------------------
67 |
68 | Sets the default torrent file extension, which must be set without '.' prefix. 
69 | This extension is going to be added to the video file name in order to deduce
70 | the torrent file name if not stated otherwise. Possible values:
71 |
72 |       tstream
73 |       torrent
74 |
75 */
76 $config['default_torrent_ext'] = 'tstream';
77
78 /*
79 |--------------------------------------------------------------------------
80 | Categories
81 |--------------------------------------------------------------------------
82 |
83 | An associative list with the video categories of the site. IDs are used
84 | in DB (for example in `videos` table), and value are human-friendly names
85 | for categories. IDs must be numeric and must preferably start from 1.
86 |
87 */
88 $config['categories'] = array(1 => 'Movies', 2 => 'TechTalks', 3 => 'Events', 4 => 'Karaoke');
89
90 /*
91 |--------------------------------------------------------------------------
92 | Videos per page
93 |--------------------------------------------------------------------------
94 |
95 | The number of video icons shown per page (as in catalog/category).
96 |
97 */
98 $config['videos_per_page'] = 16;
99
100 /*
101 |--------------------------------------------------------------------------
102 | Videos per row
103 |--------------------------------------------------------------------------
104 |
105 | The number of video icons shown on a single line (as in home page).
106 |
107 */
108 $config['videos_per_row'] = 4;