Option added for video re conversion
This commit is contained in:
parent
c81b7051a6
commit
82f8c261f3
2 changed files with 9 additions and 0 deletions
|
@ -17,6 +17,8 @@
|
|||
class="button"/>
|
||||
<input class="btn btn-primary btn-xs" type="submit" name="delete_selected" value="Delete" class="button"
|
||||
onclick="return _cb.confirm_it('Are you sure you want to delete selected video(s)')"/>
|
||||
<input class="btn btn-primary btn-xs" type="submit" name="reconvert_selected" value="Reconvert"
|
||||
class="button"/>
|
||||
</div>
|
||||
<table class="table table-bordered table-striped manageUsersTable marginTop">
|
||||
<tr>
|
||||
|
@ -126,6 +128,8 @@
|
|||
class="button"/>
|
||||
<input class="btn btn-primary btn-xs" type="submit" name="delete_selected" value="Delete" class="button"
|
||||
onclick="return _cb.confirm_it('Are you sure you want to delete selected video(s)')"/>
|
||||
<input class="btn btn-primary btn-xs" type="submit" name="reconvert_selected" value="Reconvert"
|
||||
class="button"/>
|
||||
</div>
|
||||
</form>
|
||||
|
||||
|
|
|
@ -9,6 +9,7 @@
|
|||
|
||||
require_once '../includes/admin_config.php';
|
||||
require_once '../api/push.php';
|
||||
global $cbvid;
|
||||
$userquery->admin_login_check();
|
||||
$userquery->login_check('video_moderation');
|
||||
$pages->page_redir();
|
||||
|
@ -24,6 +25,10 @@ if(!defined('SUB_PAGE')){
|
|||
define('SUB_PAGE', 'Videos Manager');
|
||||
}
|
||||
|
||||
if (isset($_POST['reconvert_selected'])) {
|
||||
reConvertVideos();
|
||||
}
|
||||
|
||||
|
||||
//Feature / UnFeature Video
|
||||
if(isset($_GET['make_feature'])){
|
||||
|
|
Loading…
Add table
Reference in a new issue