uploading works, but AV info is not automatically detected and video activation featu...
[living-lab-site.git] / application / views / video / upload_view.php
index 51a3db1..e60e144 100644 (file)
@@ -1,3 +1,11 @@
+<?php
+       // Categories
+       foreach ($this->config->item('categories') as $id => $name)
+       {
+               $categories[$id] = $this->lang->line("ui_categ_$name");
+       }
+?>
+
 <?php echo form_open_multipart("video/upload") ?>
 <table class="form">
        <tr>
        </tr>
        <tr><td></td><td><?php echo form_error('video-description') ?></td></tr>
        
+       <tr>
+               <th><?php echo $this->lang->line('video_category') ?> <span class="required">*</span> : </th>
+               <td><?php echo form_dropdown('video-category', $categories, 
+                               // TODO set_value not working
+                               set_value('video-category', '1')) ?></td>
+       </tr>
+       <tr><td></td><td></td></tr>
+       
        <tr>
                <th><?php echo $this->lang->line('video_tags') ?> <span class="required">*</span> : </th>
                <td><input type="text" name="video-tags" value="<?php echo set_value('video-tags') ?>" size="16" /> (<?php echo $this->lang->line('video_tags_hint') ?>)</td>