forked from WWBN/AVideo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanagerVideos_head.php
50 lines (49 loc) · 1.61 KB
/
managerVideos_head.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
46
47
48
49
50
<?php
require_once $global['systemRootPath'] . 'objects/category.php';
require_once $global['systemRootPath'] . 'objects/video.php';
require_once $global['systemRootPath'] . 'objects/userGroups.php';
$userGroups = UserGroups::getAllUsersGroups();
unset($_SESSION['type']);
if (!empty($_GET['video_id'])) {
if (Video::canEdit($_GET['video_id'])) {
$row = Video::getVideo($_GET['video_id'], "");
}
}
?>
<link href="<?php echo getCDN(); ?>view/js/bootstrap-datetimepicker/css/bootstrap-datetimepicker.min.css" rel="stylesheet" type="text/css"/>
<link href="<?php echo getCDN(); ?>view/js/bootstrap-fileinput/css/fileinput.min.css" rel="stylesheet" type="text/css"/>
<script src="<?php echo getCDN(); ?>view/js/bootstrap-fileinput/js/fileinput.min.js" type="text/javascript"></script>
<link href="<?php echo getCDN(); ?>view/mini-upload-form/assets/css/style.css" rel="stylesheet" />
<?php
if (AVideoPlugin::isEnabledByName("VideoTags")) {
?>
<link href="<?php echo getCDN(); ?>plugin/VideoTags/bootstrap-tagsinput/bootstrap-tagsinput.css" rel="stylesheet" type="text/css"/>
<style>
.tt-open{
background-color: #FFF;
padding: 5px;
min-width: 100px;
border-radius: 4px;
}
.tt-cursor, .tt-selectable:hover{
font-weight: bold;
}
.tt-selectable:hover{
cursor: pointer;
}
</style>
<?php
}
?>
<style>
#inputNextVideo-poster {
height: 90px;
width: 160px;
}
.ui-autocomplete{
z-index: 9999999;
}
.krajee-default.file-preview-frame {
min-width: 300px;
}
</style>