upload facility now works in single CIS mode; some simple command-line video moderati...
[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 file
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 | Autoload Stylesheets
18 |--------------------------------------------------------------------------
19 |
20 | Sets the default CSSs that are 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 | Use "array()" for no default stylesheet.
27 |
28 */
29 $config['autoload_css'] = array('default.css',
30                                                                 'jquery-ui.css');
31
32 /*
33 |--------------------------------------------------------------------------
34 | Autoload Javascript
35 |--------------------------------------------------------------------------
36 |
37 | Sets the default Javascripts that are going to be automatically added in any
38 | HTML page generated with 'application/views/html_begin.php' view and
39 | HTML_head_params library.
40 |
41 | Do not include any path to the file! 'js/' is going to be used.
42 |
43 | Use "array()" for no default javascript.
44 |
45 */
46 $config['autoload_js'] = array('jquery.js',
47                                                                 'jquery-ui.js',
48                                                                 'jquery.ui.nsinstall.js');
49
50 /*
51 |--------------------------------------------------------------------------
52 | Default Video File Extension (OBSOLETE)
53 |--------------------------------------------------------------------------
54 |
55 | Sets the default video file extension, which must be set without '.' prefix. 
56 | This extension is going to be added to the `name` field from the DB in
57 | order to deduce the video file name if not stated otherwise in the format.
58 | Possible values:
59 |
60 |       ogv
61 |       ogg
62 |
63 */
64 $config['default_video_ext'] = 'ogv';
65
66 /*
67 |--------------------------------------------------------------------------
68 | Default Torrent File Extension
69 |--------------------------------------------------------------------------
70 |
71 | Sets the default torrent file extension, which must be set without '.' prefix. 
72 | This extension is going to be added to the video file name in order to deduce
73 | the torrent file name if not stated otherwise. Possible values:
74 |
75 |       tstream
76 |       torrent
77 |
78 */
79 $config['default_torrent_ext'] = 'tstream';
80
81 /*
82 |--------------------------------------------------------------------------
83 | Categories
84 |--------------------------------------------------------------------------
85 |
86 | An associative list with the video categories of the site. IDs are used
87 | in DB (for example in `videos` table), and values are string identifiers
88 | for categories. Category names localization can be made by concatenating
89 | 'ui_categ_' with the value in order to obtain a language key.
90 | IDs must be numeric and must preferably start from 1.
91 |
92 */
93 $config['categories'] = array(
94         1 => 'movies',
95         2 => 'tech-talks',
96         3 => 'events',
97         4 => 'karaoke'
98 );
99
100 /*
101 |--------------------------------------------------------------------------
102 | Videos per Page
103 |--------------------------------------------------------------------------
104 |
105 | The number of video icons shown per page (as in catalog/category).
106 |
107 */
108 $config['videos_per_page'] = 20;
109
110 /*
111 |--------------------------------------------------------------------------
112 | Videos per Row
113 |--------------------------------------------------------------------------
114 |
115 | The number of video icons shown on a single line (as in home page).
116 |
117 */
118 $config['videos_per_row'] = 5;
119
120 /*
121 |--------------------------------------------------------------------------
122 | Search Results per Page
123 |--------------------------------------------------------------------------
124 |
125 | The number of search results shown per page (as in catalog/search).
126 |
127 */
128 $config['search_results_per_page'] = 20;
129
130 /*
131 |--------------------------------------------------------------------------
132 | Video Comments per Page
133 |--------------------------------------------------------------------------
134 |
135 | The number of video comments shown per page (as in video/watch).
136 |
137 */
138 $config['video_comments_per_page'] = 20;
139
140 /*
141 |--------------------------------------------------------------------------
142 | A list with all available languages in which the site is translated
143 |--------------------------------------------------------------------------
144 |
145 | Keys are language codes and values are language names as they appear in
146 | languages folder.
147 |
148 */
149 $config['available_languages_list'] = array(
150         'en'=>'english',
151         'ro'=>'romanian'
152 );
153
154 /*
155 |--------------------------------------------------------------------------
156 | No-Reply E-mail address
157 |--------------------------------------------------------------------------
158 |
159 | The e-mail address from which the users receive e-mail notifications
160 | like account activation e-mail or password recovery.
161 |
162 */
163 $config['noreply_email'] = 'no-reply@p2p-next.cs.pub.ro';
164
165 /*
166 |--------------------------------------------------------------------------
167 | Require Moderation
168 |--------------------------------------------------------------------------
169 |
170 | Set whether or not a new uploaded video must be aproved by an
171 | administrator.
172 |
173 */
174 $config['require_moderation'] = TRUE;