cleanup whitespace
This commit is contained in:
parent
b96f5cf49d
commit
83d6f415b3
|
@ -26,16 +26,16 @@ if ( !canView( 'Monitors' ) ) {
|
|||
}
|
||||
|
||||
$tabs = array();
|
||||
$tabs["general"] = translate('General');
|
||||
$tabs["source"] = translate('Source');
|
||||
$tabs["storage"] = translate('Storage');
|
||||
$tabs["timestamp"] = translate('Timestamp');
|
||||
$tabs["buffers"] = translate('Buffers');
|
||||
$tabs[''] = translate('General');
|
||||
$tabs[''] = translate('Source');
|
||||
$tabs[''] = translate('Storage');
|
||||
$tabs[''] = translate('Timestamp');
|
||||
$tabs[''] = translate('Buffers');
|
||||
if ( ZM_OPT_CONTROL && canView( 'Control' ) )
|
||||
$tabs["control"] = translate('Control');
|
||||
$tabs[''] = translate('Control');
|
||||
if ( ZM_OPT_X10 )
|
||||
$tabs["x10"] = translate('X10');
|
||||
$tabs["misc"] = translate('Misc');
|
||||
$tabs[''] = translate('X10');
|
||||
$tabs[''] = translate('Misc');
|
||||
|
||||
if ( isset($_REQUEST['tab']) )
|
||||
$tab = validHtmlStr($_REQUEST['tab']);
|
||||
|
@ -238,9 +238,9 @@ $rtspFFMpegMethods = array(
|
|||
);
|
||||
|
||||
$httpMethods = array(
|
||||
"simple" => "Simple",
|
||||
"regexp" => "Regexp",
|
||||
"jpegTags" => "JPEG Tags"
|
||||
'simple' => "Simple",
|
||||
'regexp' => "Regexp",
|
||||
'jpegTags' => "JPEG Tags"
|
||||
);
|
||||
if ( !ZM_PCRE )
|
||||
unset($httpMethods['regexp']);
|
||||
|
@ -250,137 +250,137 @@ unset($httpMethods['jpegTags']);
|
|||
if ( ZM_HAS_V4L1 )
|
||||
{
|
||||
$v4l1DeviceFormats = array(
|
||||
"PAL" => 0,
|
||||
"NTSC" => 1,
|
||||
"SECAM" => 2,
|
||||
"AUTO" => 3,
|
||||
"FMT4" => 4,
|
||||
"FMT5" => 5,
|
||||
"FMT6" => 6,
|
||||
"FMT7" => 7
|
||||
'PAL' => 0,
|
||||
'NTSC' => 1,
|
||||
'SECAM' => 2,
|
||||
'AUTO' => 3,
|
||||
'FMT4' => 4,
|
||||
'FMT5' => 5,
|
||||
'FMT6' => 6,
|
||||
'FMT7' => 7
|
||||
);
|
||||
|
||||
$v4l1MaxChannels = 15;
|
||||
$v4l1DeviceChannels = array();
|
||||
for ( $i = 0; $i <= $v4l1MaxChannels; $i++ )
|
||||
$v4l1DeviceChannels["$i"] = $i;
|
||||
$v4l1DeviceChannels[''] = $i;
|
||||
|
||||
$v4l1LocalPalettes = array(
|
||||
translate('Grey') => 1,
|
||||
"BGR32" => 5,
|
||||
"BGR24" => 4,
|
||||
"*YUYV" => 8,
|
||||
"*RGB565" => 3,
|
||||
"*RGB555" => 6,
|
||||
"*YUV422" => 7,
|
||||
"*YUV422P" => 13,
|
||||
"*YUV420P" => 15
|
||||
'BGR32' => 5,
|
||||
'BGR24' => 4,
|
||||
'*YUYV' => 8,
|
||||
'*RGB565' => 3,
|
||||
'*RGB555' => 6,
|
||||
'*YUV422' => 7,
|
||||
'*YUV422P' => 13,
|
||||
'*YUV420P' => 15
|
||||
);
|
||||
}
|
||||
|
||||
if ( ZM_HAS_V4L2 ) {
|
||||
$v4l2DeviceFormats = array(
|
||||
"PAL" => 0x000000ff,
|
||||
"NTSC" => 0x0000b000,
|
||||
"PAL B" => 0x00000001,
|
||||
"PAL B1" => 0x00000002,
|
||||
"PAL G" => 0x00000004,
|
||||
"PAL H" => 0x00000008,
|
||||
"PAL I" => 0x00000010,
|
||||
"PAL D" => 0x00000020,
|
||||
"PAL D1" => 0x00000040,
|
||||
"PAL K" => 0x00000080,
|
||||
"PAL M" => 0x00000100,
|
||||
"PAL N" => 0x00000200,
|
||||
"PAL Nc" => 0x00000400,
|
||||
"PAL 60" => 0x00000800,
|
||||
"NTSC M" => 0x00001000,
|
||||
"NTSC M JP" => 0x00002000,
|
||||
"NTSC 443" => 0x00004000,
|
||||
"NTSC M KR" => 0x00008000,
|
||||
"SECAM B" => 0x00010000,
|
||||
"SECAM D" => 0x00020000,
|
||||
"SECAM G" => 0x00040000,
|
||||
"SECAM H" => 0x00080000,
|
||||
"SECAM K" => 0x00100000,
|
||||
"SECAM K1" => 0x00200000,
|
||||
"SECAM L" => 0x00400000,
|
||||
"SECAM LC" => 0x00800000,
|
||||
"ATSC 8 VSB" => 0x01000000,
|
||||
"ATSC 16 VSB" => 0x02000000,
|
||||
'PAL' => 0x000000ff,
|
||||
'NTSC' => 0x0000b000,
|
||||
'PAL B' => 0x00000001,
|
||||
'PAL B1' => 0x00000002,
|
||||
'PAL G' => 0x00000004,
|
||||
'PAL H' => 0x00000008,
|
||||
'PAL I' => 0x00000010,
|
||||
'PAL D' => 0x00000020,
|
||||
'PAL D1' => 0x00000040,
|
||||
'PAL K' => 0x00000080,
|
||||
'PAL M' => 0x00000100,
|
||||
'PAL N' => 0x00000200,
|
||||
'PAL Nc' => 0x00000400,
|
||||
'PAL 60' => 0x00000800,
|
||||
'NTSC M' => 0x00001000,
|
||||
'NTSC M JP' => 0x00002000,
|
||||
'NTSC 443' => 0x00004000,
|
||||
'NTSC M KR' => 0x00008000,
|
||||
'SECAM B' => 0x00010000,
|
||||
'SECAM D' => 0x00020000,
|
||||
'SECAM G' => 0x00040000,
|
||||
'SECAM H' => 0x00080000,
|
||||
'SECAM K' => 0x00100000,
|
||||
'SECAM K1' => 0x00200000,
|
||||
'SECAM L' => 0x00400000,
|
||||
'SECAM LC' => 0x00800000,
|
||||
'ATSC 8 VSB' => 0x01000000,
|
||||
'ATSC 16 VSB' => 0x02000000,
|
||||
);
|
||||
|
||||
$v4l2MaxChannels = 31;
|
||||
$v4l2DeviceChannels = array();
|
||||
for ( $i = 0; $i <= $v4l2MaxChannels; $i++ )
|
||||
$v4l2DeviceChannels["$i"] = $i;
|
||||
$v4l2DeviceChannels[''] = $i;
|
||||
|
||||
$v4l2LocalPalettes = array(
|
||||
"Auto" => 0, /* Automatic palette selection */
|
||||
'Auto' => 0, /* Automatic palette selection */
|
||||
|
||||
/* Pixel format FOURCC depth Description */
|
||||
translate('Grey') => fourcc('G','R','E','Y'), /* 8 Greyscale */
|
||||
"BGR32" => fourcc('B','G','R','4'), /* 32 BGR-8-8-8-8 */
|
||||
"RGB32" => fourcc('R','G','B','4'), /* 32 RGB-8-8-8-8 */
|
||||
"BGR24" => fourcc('B','G','R','3'), /* 24 BGR-8-8-8 */
|
||||
"RGB24" => fourcc('R','G','B','3'), /* 24 RGB-8-8-8 */
|
||||
"*YUYV" => fourcc('Y','U','Y','V'), /* 16 YUV 4:2:2 */
|
||||
'BGR32' => fourcc('B','G','R','4'), /* 32 BGR-8-8-8-8 */
|
||||
'RGB32' => fourcc('R','G','B','4'), /* 32 RGB-8-8-8-8 */
|
||||
'BGR24' => fourcc('B','G','R','3'), /* 24 BGR-8-8-8 */
|
||||
'RGB24' => fourcc('R','G','B','3'), /* 24 RGB-8-8-8 */
|
||||
'*YUYV' => fourcc('Y','U','Y','V'), /* 16 YUV 4:2:2 */
|
||||
|
||||
/* compressed formats */
|
||||
"*JPEG" => fourcc('J','P','E','G'), /* JFIF JPEG */
|
||||
"*MJPEG" => fourcc('M','J','P','G'), /* Motion-JPEG */
|
||||
//"DV" => fourcc('d','v','s','d'), /* 1394 */
|
||||
//"MPEG" => fourcc('M','P','E','G'), /* MPEG-1/2/4 */
|
||||
'*JPEG' => fourcc('J','P','E','G'), /* JFIF JPEG */
|
||||
'*MJPEG' => fourcc('M','J','P','G'), /* Motion-JPEG */
|
||||
//'DV' => fourcc('d','v','s','d'), /* 1394 */
|
||||
//'MPEG' => fourcc('M','P','E','G'), /* MPEG-1/2/4 */
|
||||
|
||||
//"RGB332" => fourcc('R','G','B','1'), /* 8 RGB-3-3-2 */
|
||||
"*RGB444" => fourcc('R','4','4','4'), /* 16 xxxxrrrr ggggbbbb */
|
||||
"*RGB555" => fourcc('R','G','B','O'), /* 16 RGB-5-5-5 */
|
||||
"*RGB565" => fourcc('R','G','B','P'), /* 16 RGB-5-6-5 */
|
||||
//"RGB555X" => fourcc('R','G','B','Q'), /* 16 RGB-5-5-5 BE */
|
||||
//"RGB565X" => fourcc('R','G','B','R'), /* 16 RGB-5-6-5 BE */
|
||||
//"Y16" => fourcc('Y','1','6',''), /* 16 Greyscale */
|
||||
//"PAL8" => fourcc('P','A','L','8'), /* 8 8-bit palette */
|
||||
//"YVU410" => fourcc('Y','V','U','9'), /* 9 YVU 4:1:0 */
|
||||
//"YVU420" => fourcc('Y','V','1','2'), /* 12 YVU 4:2:0 */
|
||||
//'RGB332' => fourcc('R','G','B','1'), /* 8 RGB-3-3-2 */
|
||||
'*RGB444' => fourcc('R','4','4','4'), /* 16 xxxxrrrr ggggbbbb */
|
||||
'*RGB555' => fourcc('R','G','B','O'), /* 16 RGB-5-5-5 */
|
||||
'*RGB565' => fourcc('R','G','B','P'), /* 16 RGB-5-6-5 */
|
||||
//'RGB555X' => fourcc('R','G','B','Q'), /* 16 RGB-5-5-5 BE */
|
||||
//'RGB565X' => fourcc('R','G','B','R'), /* 16 RGB-5-6-5 BE */
|
||||
//'Y16' => fourcc('Y','1','6',''), /* 16 Greyscale */
|
||||
//'PAL8' => fourcc('P','A','L','8'), /* 8 8-bit palette */
|
||||
//'YVU410' => fourcc('Y','V','U','9'), /* 9 YVU 4:1:0 */
|
||||
//'YVU420' => fourcc('Y','V','1','2'), /* 12 YVU 4:2:0 */
|
||||
|
||||
"*UYVY" => fourcc('U','Y','V','Y'), /* 16 YUV 4:2:2 */
|
||||
"*YUV422P" => fourcc('4','2','2','P'), /* 16 YVU422 planar */
|
||||
"*YUV411P" => fourcc('4','1','1','P'), /* 16 YVU411 planar */
|
||||
//"Y41P" => fourcc('Y','4','1','P'), /* 12 YUV 4:1:1 */
|
||||
"*YUV444" => fourcc('Y','4','4','4'), /* 16 xxxxyyyy uuuuvvvv */
|
||||
//"YUV555" => fourcc('Y','U','V','O'), /* 16 YUV-5-5-5 */
|
||||
//"YUV565" => fourcc('Y','U','V','P'), /* 16 YUV-5-6-5 */
|
||||
//"YUV32" => fourcc('Y','U','V','4'), /* 32 YUV-8-8-8-8 */
|
||||
'*UYVY' => fourcc('U','Y','V','Y'), /* 16 YUV 4:2:2 */
|
||||
'*YUV422P' => fourcc('4','2','2','P'), /* 16 YVU422 planar */
|
||||
'*YUV411P' => fourcc('4','1','1','P'), /* 16 YVU411 planar */
|
||||
//'Y41P' => fourcc('Y','4','1','P'), /* 12 YUV 4:1:1 */
|
||||
'*YUV444' => fourcc('Y','4','4','4'), /* 16 xxxxyyyy uuuuvvvv */
|
||||
//'YUV555' => fourcc('Y','U','V','O'), /* 16 YUV-5-5-5 */
|
||||
//'YUV565' => fourcc('Y','U','V','P'), /* 16 YUV-5-6-5 */
|
||||
//'YUV32' => fourcc('Y','U','V','4'), /* 32 YUV-8-8-8-8 */
|
||||
|
||||
/* two planes -- one Y, one Cr + Cb interleaved */
|
||||
//"NV12" => fourcc('N','V','1','2'), /* 12 Y/CbCr 4:2:0 */
|
||||
//"NV21" => fourcc('N','V','2','1'), /* 12 Y/CrCb 4:2:0 */
|
||||
//'NV12' => fourcc('N','V','1','2'), /* 12 Y/CbCr 4:2:0 */
|
||||
//'NV21' => fourcc('N','V','2','1'), /* 12 Y/CrCb 4:2:0 */
|
||||
|
||||
/* The following formats are not defined in the V4L2 specification */
|
||||
"*YUV410" => fourcc('Y','U','V','9'), /* 9 YUV 4:1:0 */
|
||||
"*YUV420" => fourcc('Y','U','1','2'), /* 12 YUV 4:2:0 */
|
||||
//"YYUV" => fourcc('Y','Y','U','V'), /* 16 YUV 4:2:2 */
|
||||
//"HI240" => fourcc('H','I','2','4'), /* 8 8-bit color */
|
||||
//"HM12" => fourcc('H','M','1','2'), /* 8 YUV 4:2:0 16x16 macroblocks */
|
||||
'*YUV410' => fourcc('Y','U','V','9'), /* 9 YUV 4:1:0 */
|
||||
'*YUV420' => fourcc('Y','U','1','2'), /* 12 YUV 4:2:0 */
|
||||
//'YYUV' => fourcc('Y','Y','U','V'), /* 16 YUV 4:2:2 */
|
||||
//'HI240' => fourcc('H','I','2','4'), /* 8 8-bit color */
|
||||
//'HM12' => fourcc('H','M','1','2'), /* 8 YUV 4:2:0 16x16 macroblocks */
|
||||
|
||||
/* see http://www.siliconimaging.com/RGB%20Bayer.htm */
|
||||
//"SBGGR8" => fourcc('B','A','8','1'), /* 8 BGBG.. GRGR.. */
|
||||
//"SGBRG8" => fourcc('G','B','R','G'), /* 8 GBGB.. RGRG.. */
|
||||
//"SBGGR16" => fourcc('B','Y','R','2'), /* 16 BGBG.. GRGR.. */
|
||||
//'SBGGR8' => fourcc('B','A','8','1'), /* 8 BGBG.. GRGR.. */
|
||||
//'SGBRG8' => fourcc('G','B','R','G'), /* 8 GBGB.. RGRG.. */
|
||||
//'SBGGR16' => fourcc('B','Y','R','2'), /* 16 BGBG.. GRGR.. */
|
||||
|
||||
/* Vendor-specific formats */
|
||||
//"WNVA" => fourcc('W','N','V','A'), /* Winnov hw compress */
|
||||
//"SN9C10X" => fourcc('S','9','1','0'), /* SN9C10x compression */
|
||||
//"PWC1" => fourcc('P','W','C','1'), /* pwc older webcam */
|
||||
//"PWC2" => fourcc('P','W','C','2'), /* pwc newer webcam */
|
||||
//"ET61X251" => fourcc('E','6','2','5'), /* ET61X251 compression */
|
||||
//"SPCA501" => fourcc('S','5','0','1'), /* YUYV per line */
|
||||
//"SPCA505" => fourcc('S','5','0','5'), /* YYUV per line */
|
||||
//"SPCA508" => fourcc('S','5','0','8'), /* YUVY per line */
|
||||
//"SPCA561" => fourcc('S','5','6','1'), /* compressed GBRG bayer */
|
||||
//"PAC207" => fourcc('P','2','0','7'), /* compressed BGGR bayer */
|
||||
//"PJPG" => fourcc('P','J','P','G'), /* Pixart 73xx JPEG */
|
||||
//"YVYU" => fourcc('Y','V','Y','U'), /* 16 YVU 4:2:2 */
|
||||
//'WNVA' => fourcc('W','N','V','A'), /* Winnov hw compress */
|
||||
//'SN9C10X' => fourcc('S','9','1','0'), /* SN9C10x compression */
|
||||
//'PWC1' => fourcc('P','W','C','1'), /* pwc older webcam */
|
||||
//'PWC2' => fourcc('P','W','C','2'), /* pwc newer webcam */
|
||||
//'ET61X251' => fourcc('E','6','2','5'), /* ET61X251 compression */
|
||||
//'SPCA501' => fourcc('S','5','0','1'), /* YUYV per line */
|
||||
//'SPCA505' => fourcc('S','5','0','5'), /* YYUV per line */
|
||||
//'SPCA508' => fourcc('S','5','0','8'), /* YUVY per line */
|
||||
//'SPCA561' => fourcc('S','5','6','1'), /* compressed GBRG bayer */
|
||||
//'PAC207' => fourcc('P','2','0','7'), /* compressed BGGR bayer */
|
||||
//'PJPG' => fourcc('P','J','P','G'), /* Pixart 73xx JPEG */
|
||||
//'YVYU' => fourcc('Y','V','Y','U'), /* 16 YVU 4:2:2 */
|
||||
);
|
||||
}
|
||||
|
||||
|
@ -400,70 +400,70 @@ $orientations = array(
|
|||
);
|
||||
|
||||
$deinterlaceopts = array(
|
||||
"Disabled" => 0x00000000,
|
||||
"Four field motion adaptive - Soft" => 0x00001E04, /* 30 change */
|
||||
"Four field motion adaptive - Medium" => 0x00001404, /* 20 change */
|
||||
"Four field motion adaptive - Hard" => 0x00000A04, /* 10 change */
|
||||
"Discard" => 0x00000001,
|
||||
"Linear" => 0x00000002,
|
||||
"Blend" => 0x00000003,
|
||||
"Blend (25%)" => 0x00000205
|
||||
'Disabled' => 0x00000000,
|
||||
'Four field motion adaptive - Soft' => 0x00001E04, /* 30 change */
|
||||
'Four field motion adaptive - Medium' => 0x00001404, /* 20 change */
|
||||
'Four field motion adaptive - Hard' => 0x00000A04, /* 10 change */
|
||||
'Discard' => 0x00000001,
|
||||
'Linear' => 0x00000002,
|
||||
'Blend' => 0x00000003,
|
||||
'Blend (25%)' => 0x00000205
|
||||
);
|
||||
|
||||
$deinterlaceopts_v4l2 = array(
|
||||
"Disabled" => 0x00000000,
|
||||
"Four field motion adaptive - Soft" => 0x00001E04, /* 30 change */
|
||||
"Four field motion adaptive - Medium" => 0x00001404, /* 20 change */
|
||||
"Four field motion adaptive - Hard" => 0x00000A04, /* 10 change */
|
||||
"Discard" => 0x00000001,
|
||||
"Linear" => 0x00000002,
|
||||
"Blend" => 0x00000003,
|
||||
"Blend (25%)" => 0x00000205,
|
||||
"V4L2: Capture top field only" => 0x02000000,
|
||||
"V4L2: Capture bottom field only" => 0x03000000,
|
||||
"V4L2: Alternate fields (Bob)" => 0x07000000,
|
||||
"V4L2: Progressive" => 0x01000000,
|
||||
"V4L2: Interlaced" => 0x04000000
|
||||
'Disabled' => 0x00000000,
|
||||
'Four field motion adaptive - Soft' => 0x00001E04, /* 30 change */
|
||||
'Four field motion adaptive - Medium' => 0x00001404, /* 20 change */
|
||||
'Four field motion adaptive - Hard' => 0x00000A04, /* 10 change */
|
||||
'Discard' => 0x00000001,
|
||||
'Linear' => 0x00000002,
|
||||
'Blend' => 0x00000003,
|
||||
'Blend (25%)' => 0x00000205,
|
||||
'V4L2: Capture top field only' => 0x02000000,
|
||||
'V4L2: Capture bottom field only' => 0x03000000,
|
||||
'V4L2: Alternate fields (Bob)' => 0x07000000,
|
||||
'V4L2: Progressive' => 0x01000000,
|
||||
'V4L2: Interlaced' => 0x04000000
|
||||
);
|
||||
|
||||
$fastblendopts = array(
|
||||
"No blending" => 0,
|
||||
"1.5625%" => 1,
|
||||
"3.125%" => 3,
|
||||
"6.25% (Indoor)" => 6,
|
||||
"12.5% (Outdoor)" => 12,
|
||||
"25%" => 25,
|
||||
"50%" => 50
|
||||
);
|
||||
'No blending' => 0,
|
||||
'1.5625%' => 1,
|
||||
'3.125%' => 3,
|
||||
'6.25% (Indoor)' => 6,
|
||||
'12.5% (Outdoor)' => 12,
|
||||
'25%' => 25,
|
||||
'50%' => 50
|
||||
);
|
||||
|
||||
$fastblendopts_alarm = array(
|
||||
"No blending (Alarm lasts forever)" => 0,
|
||||
"1.5625%" => 1,
|
||||
"3.125%" => 3,
|
||||
"6.25%" => 6,
|
||||
"12.5%" => 12,
|
||||
"25%" => 25,
|
||||
"50% (Alarm lasts a moment)" => 50
|
||||
);
|
||||
'No blending (Alarm lasts forever)' => 0,
|
||||
'1.5625%' => 1,
|
||||
'3.125%' => 3,
|
||||
'6.25%' => 6,
|
||||
'12.5%' => 12,
|
||||
'25%' => 25,
|
||||
'50% (Alarm lasts a moment)' => 50
|
||||
);
|
||||
|
||||
$label_size = array(
|
||||
"Default" => 1,
|
||||
"Large" => 2
|
||||
);
|
||||
'Default' => 1,
|
||||
'Large' => 2
|
||||
);
|
||||
|
||||
$savejpegopts = array(
|
||||
"Disabled" => 0,
|
||||
"Frames only" => 1,
|
||||
"Analysis images only (if available)" => 2,
|
||||
"Frames + Analysis images (if available)" => 3,
|
||||
"Snapshot Only" => 4
|
||||
);
|
||||
'Disabled' => 0,
|
||||
'Frames only' => 1,
|
||||
'Analysis images only (if available)' => 2,
|
||||
'Frames + Analysis images (if available)' => 3,
|
||||
'Snapshot Only' => 4
|
||||
);
|
||||
|
||||
$videowriteropts = array(
|
||||
"Disabled" => 0,
|
||||
"X264 Encode" => 1,
|
||||
"H264 Camera Passthrough" => 2
|
||||
);
|
||||
'Disabled' => 0,
|
||||
'X264 Encode' => 1,
|
||||
'H264 Camera Passthrough' => 2
|
||||
);
|
||||
|
||||
xhtmlHeaders(__FILE__, translate('Monitor')." - ".validHtmlStr($monitor['Name']) );
|
||||
?>
|
||||
|
@ -483,33 +483,33 @@ if ( canEdit( 'Monitors' ) ) {
|
|||
?>
|
||||
<div id="headerButtons">
|
||||
<a href="#" onclick="createPopup( '?view=monitorprobe&mid=<?php echo $monitor['Id'] ?>', 'zmMonitorProbe<?php echo $monitor['Id'] ?>', 'monitorprobe' ); return( false );"><?php echo translate('Probe') ?></a>
|
||||
<?php
|
||||
<?php
|
||||
if ( ZM_HAS_ONVIF ) {
|
||||
?>
|
||||
?>
|
||||
<a href="#" onclick="createPopup( '?view=onvifprobe&mid=<?php echo $monitor['Id'] ?>', 'zmOnvifProbe<?php echo $monitor['Id'] ?>', 'onvifprobe' ); return( false );"><?php echo translate('OnvifProbe') ?></a>
|
||||
<?php
|
||||
<?php
|
||||
}
|
||||
?>
|
||||
?>
|
||||
<a href="#" onclick="createPopup( '?view=monitorpreset&mid=<?php echo $monitor['Id'] ?>', 'zmMonitorPreset<?php echo $monitor['Id'] ?>', 'monitorpreset' ); return( false );"><?php echo translate('Presets') ?></a>
|
||||
</div>
|
||||
<?php
|
||||
}
|
||||
} // end if canEdit('Monitors')
|
||||
?>
|
||||
<h2><?php echo translate('Monitor') ?> - <?php echo validHtmlStr($monitor['Name']) ?><?php if ( !empty($monitor['Id']) ) { ?> (<?php echo $monitor['Id'] ?>)<?php } ?></h2>
|
||||
</div>
|
||||
<div id="content">
|
||||
<ul class="tabList">
|
||||
<?php
|
||||
foreach ( $tabs as $name=>$value ) {
|
||||
if ( $tab == $name ) {
|
||||
foreach ( $tabs as $name=>$value ) {
|
||||
if ( $tab == $name ) {
|
||||
?>
|
||||
<li class="active"><?php echo $value ?></li>
|
||||
<?php
|
||||
} else {
|
||||
} else {
|
||||
?>
|
||||
<li><a href="#" onclick="submitTab( '<?php echo $name ?>' ); return( false );"><?php echo $value ?></a></li>
|
||||
<?php
|
||||
}
|
||||
}
|
||||
}
|
||||
?>
|
||||
</ul>
|
||||
|
@ -522,7 +522,7 @@ if ( canEdit( 'Monitors' ) ) {
|
|||
<input type="hidden" name="newMonitor[LinkedMonitors]" value="<?php echo isset($newMonitor['LinkedMonitors'])?$newMonitor['LinkedMonitors']:'' ?>"/>
|
||||
<input type="hidden" name="origMethod" value="<?php echo isset($newMonitor['Method'])?$newMonitor['Method']:'' ?>"/>
|
||||
<?php
|
||||
if ( $tab != 'general' ) {
|
||||
if ( $tab != 'general' ) {
|
||||
?>
|
||||
<input type="hidden" name="newMonitor[Name]" value="<?php echo validHtmlStr($newMonitor['Name']) ?>"/>
|
||||
<input type="hidden" name="newMonitor[ServerId]" value="<?php echo validHtmlStr($newMonitor['ServerId']) ?>"/>
|
||||
|
@ -535,15 +535,15 @@ if ( canEdit( 'Monitors' ) ) {
|
|||
<input type="hidden" name="newMonitor[MaxFPS]" value="<?php echo validHtmlStr($newMonitor['MaxFPS']) ?>"/>
|
||||
<input type="hidden" name="newMonitor[AlarmMaxFPS]" value="<?php echo validHtmlStr($newMonitor['AlarmMaxFPS']) ?>"/>
|
||||
<?php
|
||||
if ( isset($newMonitor['Triggers']) ) {
|
||||
foreach( $newMonitor['Triggers'] as $newTrigger ) {
|
||||
if ( isset($newMonitor['Triggers']) ) {
|
||||
foreach( $newMonitor['Triggers'] as $newTrigger ) {
|
||||
?>
|
||||
<input type="hidden" name="newMonitor[Triggers][]" value="<?php echo validHtmlStr($newTrigger) ?>"/>
|
||||
<?php
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
if ( ZM_HAS_V4L && ($tab != 'source' || $newMonitor['Type'] != 'Local') ) {
|
||||
if ( ZM_HAS_V4L && ($tab != 'source' || $newMonitor['Type'] != 'Local') ) {
|
||||
?>
|
||||
<input type="hidden" name="newMonitor[Device]" value="<?php echo validHtmlStr($newMonitor['Device']) ?>"/>
|
||||
<input type="hidden" name="newMonitor[Channel]" value="<?php echo validHtmlStr($newMonitor['Channel']) ?>"/>
|
||||
|
@ -552,32 +552,32 @@ if ( canEdit( 'Monitors' ) ) {
|
|||
<input type="hidden" name="newMonitor[V4LMultiBuffer]" value="<?php echo validHtmlStr($newMonitor['V4LMultiBuffer']) ?>"/>
|
||||
<input type="hidden" name="newMonitor[V4LCapturesPerFrame]" value="<?php echo validHtmlStr($newMonitor['V4LCapturesPerFrame']) ?>"/>
|
||||
<?php
|
||||
}
|
||||
if ( $tab != 'source' || $newMonitor['Type'] != 'Remote' ) {
|
||||
}
|
||||
if ( $tab != 'source' || $newMonitor['Type'] != 'Remote' ) {
|
||||
?>
|
||||
<input type="hidden" name="newMonitor[Protocol]" value="<?php echo validHtmlStr($newMonitor['Protocol']) ?>"/>
|
||||
<input type="hidden" name="newMonitor[Host]" value="<?php echo validHtmlStr($newMonitor['Host']) ?>"/>
|
||||
<input type="hidden" name="newMonitor[Port]" value="<?php echo validHtmlStr($newMonitor['Port']) ?>"/>
|
||||
<?php
|
||||
}
|
||||
if ( $tab != 'source' || ($newMonitor['Type'] != 'Local' && $newMonitor['Type'] != 'Remote' && $newMonitor['Type'] != 'Ffmpeg' && $newMonitor['Type'] != 'Libvlc') ) {
|
||||
}
|
||||
if ( $tab != 'source' || ($newMonitor['Type'] != 'Local' && $newMonitor['Type'] != 'Remote' && $newMonitor['Type'] != 'Ffmpeg' && $newMonitor['Type'] != 'Libvlc') ) {
|
||||
?>
|
||||
<input type="hidden" name="newMonitor[Method]" value="<?php echo validHtmlStr($newMonitor['Method']) ?>"/>
|
||||
<?php
|
||||
}
|
||||
if ( $tab != 'source' || ($newMonitor['Type'] != 'Ffmpeg' && $newMonitor['Type'] != 'Libvlc' )) {
|
||||
}
|
||||
if ( $tab != 'source' || ($newMonitor['Type'] != 'Ffmpeg' && $newMonitor['Type'] != 'Libvlc' )) {
|
||||
?>
|
||||
<input type="hidden" name="newMonitor[Options]" value="<?php echo validHtmlStr($newMonitor['Options']) ?>"/>
|
||||
<?php
|
||||
}
|
||||
if ( $tab != 'source' || ($newMonitor['Type'] != 'Remote' && $newMonitor['Type'] != 'File' && $newMonitor['Type'] != 'Ffmpeg' && $newMonitor['Type'] != 'Libvlc' && $newMonitor['Type'] != 'cURL') ) {
|
||||
}
|
||||
if ( $tab != 'source' || ($newMonitor['Type'] != 'Remote' && $newMonitor['Type'] != 'File' && $newMonitor['Type'] != 'Ffmpeg' && $newMonitor['Type'] != 'Libvlc' && $newMonitor['Type'] != 'cURL') ) {
|
||||
?>
|
||||
<input type="hidden" name="newMonitor[Path]" value="<?php echo validHtmlStr($newMonitor['Path']) ?>"/>
|
||||
<input type="hidden" name="newMonitor[User]" value="<?php echo validHtmlStr($newMonitor['User']) ?>"/>
|
||||
<input type="hidden" name="newMonitor[Pass]" value="<?php echo validHtmlStr($newMonitor['Pass']) ?>"/>
|
||||
<?php
|
||||
}
|
||||
if ( $tab != 'source' ) {
|
||||
}
|
||||
if ( $tab != 'source' ) {
|
||||
?>
|
||||
<input type="hidden" name="newMonitor[Colours]" value="<?php echo validHtmlStr($newMonitor['Colours']) ?>"/>
|
||||
<input type="hidden" name="newMonitor[Width]" value="<?php echo validHtmlStr($newMonitor['Width']) ?>"/>
|
||||
|
@ -585,29 +585,29 @@ if ( $tab != 'source' ) {
|
|||
<input type="hidden" name="newMonitor[Orientation]" value="<?php echo validHtmlStr($newMonitor['Orientation']) ?>"/>
|
||||
<input type="hidden" name="newMonitor[Deinterlacing]" value="<?php echo validHtmlStr($newMonitor['Deinterlacing']) ?>"/>
|
||||
<?php
|
||||
}
|
||||
if ( $tab != 'storage' ) {
|
||||
}
|
||||
if ( $tab != 'storage' ) {
|
||||
?>
|
||||
<input type="hidden" name="newMonitor[SaveJPEGs]" value="<?php echo validHtmlStr($newMonitor['SaveJPEGs']) ?>"/>
|
||||
<input type="hidden" name="newMonitor[VideoWriter]" value="<?php echo validHtmlStr($newMonitor['VideoWriter']) ?>"/>
|
||||
<input type="hidden" name="newMonitor[EncoderParameters]" value="<?php echo validHtmlStr($newMonitor['EncoderParameters']) ?>"/>
|
||||
<input type="hidden" name="newMonitor[RecordAudio]" value="<?php echo validHtmlStr($newMonitor['RecordAudio']) ?>"/>
|
||||
<?php
|
||||
}
|
||||
if ( $tab != 'source' || ($newMonitor['Type'] != 'Remote' && $newMonitor['Protocol'] != 'RTSP')) {
|
||||
}
|
||||
if ( $tab != 'source' || ($newMonitor['Type'] != 'Remote' && $newMonitor['Protocol'] != 'RTSP')) {
|
||||
?>
|
||||
<input type="hidden" name="newMonitor[RTSPDescribe]" value="<?php echo validHtmlStr($newMonitor['RTSPDescribe']) ?>"/>
|
||||
<?php
|
||||
}
|
||||
if ( $tab != 'timestamp' ) {
|
||||
}
|
||||
if ( $tab != 'timestamp' ) {
|
||||
?>
|
||||
<input type="hidden" name="newMonitor[LabelFormat]" value="<?php echo validHtmlStr($newMonitor['LabelFormat']) ?>"/>
|
||||
<input type="hidden" name="newMonitor[LabelX]" value="<?php echo validHtmlStr($newMonitor['LabelX']) ?>"/>
|
||||
<input type="hidden" name="newMonitor[LabelY]" value="<?php echo validHtmlStr($newMonitor['LabelY']) ?>"/>
|
||||
<input type="hidden" name="newMonitor[LabelSize]" value="<?php echo validHtmlStr($newMonitor['LabelSize']) ?>"/>
|
||||
<?php
|
||||
}
|
||||
if ( $tab != 'buffers' ) {
|
||||
}
|
||||
if ( $tab != 'buffers' ) {
|
||||
?>
|
||||
<input type="hidden" name="newMonitor[ImageBufferCount]" value="<?php echo validHtmlStr($newMonitor['ImageBufferCount']) ?>"/>
|
||||
<input type="hidden" name="newMonitor[WarmupCount]" value="<?php echo validHtmlStr($newMonitor['WarmupCount']) ?>"/>
|
||||
|
@ -616,8 +616,8 @@ if ( $tab != 'buffers' ) {
|
|||
<input type="hidden" name="newMonitor[StreamReplayBuffer]" value="<?php echo validHtmlStr($newMonitor['StreamReplayBuffer']) ?>"/>
|
||||
<input type="hidden" name="newMonitor[AlarmFrameCount]" value="<?php echo validHtmlStr($newMonitor['AlarmFrameCount']) ?>"/>
|
||||
<?php
|
||||
}
|
||||
if ( ZM_OPT_CONTROL && $tab != 'control' ) {
|
||||
}
|
||||
if ( ZM_OPT_CONTROL && $tab != 'control' ) {
|
||||
?>
|
||||
<input type="hidden" name="newMonitor[Controllable]" value="<?php echo validHtmlStr($newMonitor['Controllable']) ?>"/>
|
||||
<input type="hidden" name="newMonitor[ControlId]" value="<?php echo validHtmlStr($newMonitor['ControlId']) ?>"/>
|
||||
|
@ -629,15 +629,15 @@ if ( ZM_OPT_CONTROL && $tab != 'control' ) {
|
|||
<input type="hidden" name="newMonitor[ReturnLocation]" value="<?php echo validHtmlStr($newMonitor['ReturnLocation']) ?>"/>
|
||||
<input type="hidden" name="newMonitor[ReturnDelay]" value="<?php echo validHtmlStr($newMonitor['ReturnDelay']) ?>"/>
|
||||
<?php
|
||||
}
|
||||
if ( ZM_OPT_X10 && $tab != 'x10' ) {
|
||||
}
|
||||
if ( ZM_OPT_X10 && $tab != 'x10' ) {
|
||||
?>
|
||||
<input type="hidden" name="newX10Monitor[Activation]" value="<?php echo validHtmlStr($newX10Monitor['Activation']) ?>"/>
|
||||
<input type="hidden" name="newX10Monitor[AlarmInput]" value="<?php echo validHtmlStr($newX10Monitor['AlarmInput']) ?>"/>
|
||||
<input type="hidden" name="newX10Monitor[AlarmOutput]" value="<?php echo validHtmlStr($newX10Monitor['AlarmOutput']) ?>"/>
|
||||
<?php
|
||||
}
|
||||
if ( $tab != 'misc' ) {
|
||||
}
|
||||
if ( $tab != 'misc' ) {
|
||||
?>
|
||||
<input type="hidden" name="newMonitor[EventPrefix]" value="<?php echo validHtmlStr($newMonitor['EventPrefix']) ?>"/>
|
||||
<input type="hidden" name="newMonitor[SectionLength]" value="<?php echo validHtmlStr($newMonitor['SectionLength']) ?>"/>
|
||||
|
@ -651,32 +651,32 @@ if ( $tab != 'misc' ) {
|
|||
<input type="hidden" name="newMonitor[WebColour]" value="<?php echo validHtmlStr($newMonitor['WebColour']) ?>"/>
|
||||
<input type="hidden" name="newMonitor[Exif]" value="<?php echo validHtmlStr($newMonitor['Exif']) ?>"/>
|
||||
<?php
|
||||
}
|
||||
if ( ZM_HAS_V4L && ($tab != 'misc' || $newMonitor['Type'] != 'Local') ) {
|
||||
}
|
||||
if ( ZM_HAS_V4L && ($tab != 'misc' || $newMonitor['Type'] != 'Local') ) {
|
||||
?>
|
||||
<input type="hidden" name="newMonitor[SignalCheckColour]" value="<?php echo validHtmlStr($newMonitor['SignalCheckColour']) ?>"/>
|
||||
<?php
|
||||
}
|
||||
}
|
||||
?>
|
||||
<table id="contentTable" class="major" cellspacing="0">
|
||||
<tbody>
|
||||
<table id="contentTable" class="major" cellspacing="0">
|
||||
<tbody>
|
||||
<?php
|
||||
switch ( $tab ) {
|
||||
switch ( $tab ) {
|
||||
case 'general' :
|
||||
{
|
||||
{
|
||||
?>
|
||||
<tr><td><?php echo translate('Name') ?></td><td><input type="text" name="newMonitor[Name]" value="<?php echo validHtmlStr($newMonitor['Name']) ?>" size="16"/></td></tr>
|
||||
<tr><td><?php echo translate('Server') ?></td><td>
|
||||
<?php
|
||||
$servers = array(''=>'None');
|
||||
$result = dbQuery( 'SELECT * FROM Servers ORDER BY Name');
|
||||
$results = $result->fetchALL(PDO::FETCH_CLASS | PDO::FETCH_PROPS_LATE, 'Server' );
|
||||
foreach ( $results as $row => $server_obj ) {
|
||||
$servers[$server_obj->Id] = $server_obj->Name();
|
||||
}
|
||||
?>
|
||||
<?php echo buildSelect( "newMonitor[ServerId]", $servers ); ?>
|
||||
</td></tr>
|
||||
$servers = array(''=>'None');
|
||||
$result = dbQuery( 'SELECT * FROM Servers ORDER BY Name');
|
||||
$results = $result->fetchALL(PDO::FETCH_CLASS | PDO::FETCH_PROPS_LATE, 'Server' );
|
||||
foreach ( $results as $row => $server_obj ) {
|
||||
$servers[$server_obj->Id] = $server_obj->Name();
|
||||
}
|
||||
echo buildSelect( "newMonitor[ServerId]", $servers );
|
||||
?>
|
||||
</td></tr>
|
||||
<tr><td><?php echo translate('SourceType') ?></td><td><?php echo buildSelect( "newMonitor[Type]", $sourceTypes ); ?></td></tr>
|
||||
<tr><td><?php echo translate('Function') ?></td><td><select name="newMonitor[Function]">
|
||||
<?php
|
||||
|
@ -693,42 +693,41 @@ switch ( $tab ) {
|
|||
<td>
|
||||
<select name="monitorIds" size="4" multiple="multiple" onchange="updateLinkedMonitors( this )">
|
||||
<?php
|
||||
$monitors = dbFetchAll( "select Id,Name from Monitors order by Sequence asc" );
|
||||
if ( !empty($newMonitor['LinkedMonitors']) )
|
||||
$monitorIds = array_flip( explode( ',', $newMonitor['LinkedMonitors'] ) );
|
||||
else
|
||||
$monitorIds = array();
|
||||
foreach ( $monitors as $monitor ) {
|
||||
if ( (empty($newMonitor['Id']) || ($monitor['Id'] != $newMonitor['Id'])) && visibleMonitor( $monitor['Id'] ) ) {
|
||||
$monitors = dbFetchAll( "select Id,Name from Monitors order by Sequence asc" );
|
||||
if ( !empty($newMonitor['LinkedMonitors']) )
|
||||
$monitorIds = array_flip( explode( ',', $newMonitor['LinkedMonitors'] ) );
|
||||
else
|
||||
$monitorIds = array();
|
||||
foreach ( $monitors as $monitor ) {
|
||||
if ( (empty($newMonitor['Id']) || ($monitor['Id'] != $newMonitor['Id'])) && visibleMonitor( $monitor['Id'] ) ) {
|
||||
?>
|
||||
<option value="<?php echo $monitor['Id'] ?>"<?php if ( array_key_exists( $monitor['Id'], $monitorIds ) ) { ?> selected="selected"<?php } ?>><?php echo validHtmlStr($monitor['Name']) ?></option>
|
||||
<?php
|
||||
}
|
||||
}
|
||||
}
|
||||
?>
|
||||
</select>
|
||||
</td>
|
||||
</tr>
|
||||
<tr><td><?php echo translate('AnalysisFPS') ?></td><td><input type="text" name="newMonitor[AnalysisFPS]" value="<?php echo validHtmlStr($newMonitor['AnalysisFPS']) ?>" size="6"/></td></tr>
|
||||
<?php
|
||||
if ( $newMonitor['Type'] != 'Local' && $newMonitor['Type'] != 'File' ) {
|
||||
if ( $newMonitor['Type'] != 'Local' && $newMonitor['Type'] != 'File' ) {
|
||||
?>
|
||||
<tr><td><?php echo translate('MaximumFPS') ?> (<?php echo makePopupLink('?view=optionhelp&option=OPTIONS_MAXFPS', 'zmOptionHelp', 'optionhelp', '?' ) ?>)</td><td><input type="text" onclick="document.getElementById('newMonitor[MaxFPS]').innerHTML= ' CAUTION: See the help text'" name="newMonitor[MaxFPS]" value="<?php echo validHtmlStr($newMonitor['MaxFPS']) ?>" size="5"/><span id="newMonitor[MaxFPS]" style="color:red"></span></td></tr>
|
||||
<tr><td><?php echo translate('AlarmMaximumFPS') ?> (<?php echo makePopupLink('?view=optionhelp&option=OPTIONS_MAXFPS', 'zmOptionHelp', 'optionhelp', '?' ) ?>)</td><td><input type="text" onclick="document.getElementById('newMonitor[AlarmMaxFPS]').innerHTML= ' CAUTION: See the help text'" name="newMonitor[AlarmMaxFPS]" value="<?php echo validHtmlStr($newMonitor['AlarmMaxFPS']) ?>" size="5"/><span id="newMonitor[AlarmMaxFPS]" style="color:red"></span></td></tr>
|
||||
<?php
|
||||
} else {
|
||||
} else {
|
||||
?>
|
||||
<tr><td><?php echo translate('MaximumFPS') ?></td><td><input type="text" name="newMonitor[MaxFPS]" value="<?php echo validHtmlStr($newMonitor['MaxFPS']) ?>" size="5"/></td></tr>
|
||||
<tr><td><?php echo translate('AlarmMaximumFPS') ?></td><td><input type="text" name="newMonitor[AlarmMaxFPS]" value="<?php echo validHtmlStr($newMonitor['AlarmMaxFPS']) ?>" size="5"/></td></tr>
|
||||
<?php
|
||||
}
|
||||
if ( ZM_FAST_IMAGE_BLENDS )
|
||||
{
|
||||
}
|
||||
if ( ZM_FAST_IMAGE_BLENDS ) {
|
||||
?>
|
||||
<tr><td><?php echo translate('RefImageBlendPct') ?></td><td><select name="newMonitor[RefBlendPerc]"><?php foreach ( $fastblendopts as $name => $value ) { ?><option value="<?php echo $value ?>"<?php if ( $value == $newMonitor['RefBlendPerc'] ) { ?> selected="selected"<?php } ?>><?php echo $name ?></option><?php } ?></select></td></tr>
|
||||
<tr><td><?php echo translate('AlarmRefImageBlendPct') ?></td><td><select name="newMonitor[AlarmRefBlendPerc]"><?php foreach ( $fastblendopts_alarm as $name => $value ) { ?><option value="<?php echo $value ?>"<?php if ( $value == $newMonitor['AlarmRefBlendPerc'] ) { ?> selected="selected"<?php } ?>><?php echo $name ?></option><?php } ?></select></td></tr>
|
||||
<?php
|
||||
} else {
|
||||
} else {
|
||||
?>
|
||||
<tr><td><?php echo translate('RefImageBlendPct') ?></td><td><input type="text" name="newMonitor[RefBlendPerc]" value="<?php echo validHtmlStr($newMonitor['RefBlendPerc']) ?>" size="4"/></td></tr>
|
||||
<tr><td><?php echo translate('AlarmRefImageBlendPct') ?></td><td><input type="text" name="newMonitor[AlarmRefBlendPerc]" value="<?php echo validHtmlStr($newMonitor['AlarmRefBlendPerc']) ?>" size="4"/></td></tr>
|
||||
|
@ -742,14 +741,14 @@ switch ( $tab ) {
|
|||
$breakCount = min( 3, $breakCount );
|
||||
$optCount = 0;
|
||||
foreach( $optTriggers as $optTrigger ) {
|
||||
if ( !ZM_OPT_X10 && $optTrigger == 'X10' )
|
||||
continue;
|
||||
if ( $optCount && ($optCount%$breakCount == 0) )
|
||||
echo "</br>";
|
||||
if ( !ZM_OPT_X10 && $optTrigger == 'X10' )
|
||||
continue;
|
||||
if ( $optCount && ($optCount%$breakCount == 0) )
|
||||
echo '</br>';
|
||||
?>
|
||||
<input type="checkbox" name="newMonitor[Triggers][]" value="<?php echo $optTrigger ?>"<?php if ( isset($newMonitor['Triggers']) && in_array( $optTrigger, $newMonitor['Triggers'] ) ) { ?> checked="checked"<?php } ?>/> <?php echo $optTrigger ?>
|
||||
<?php
|
||||
$optCount ++;
|
||||
$optCount ++;
|
||||
}
|
||||
if ( !$optCount ) {
|
||||
?>
|
||||
|
@ -760,51 +759,51 @@ switch ( $tab ) {
|
|||
</td></tr>
|
||||
<?php
|
||||
break;
|
||||
}
|
||||
}
|
||||
case 'source' :
|
||||
{
|
||||
{
|
||||
if ( ZM_HAS_V4L && $newMonitor['Type'] == 'Local' ) {
|
||||
?>
|
||||
<tr><td><?php echo translate('DevicePath') ?></td><td><input type="text" name="newMonitor[Device]" value="<?php echo validHtmlStr($newMonitor['Device']) ?>" size="24"/></td></tr>
|
||||
<tr><td><?php echo translate('CaptureMethod') ?></td><td><?php echo buildSelect( "newMonitor[Method]", $localMethods, "submitTab( '$tab' )" ); ?></td></tr>
|
||||
<?php
|
||||
if ( ZM_HAS_V4L1 && $newMonitor['Method'] == 'v4l1' ) {
|
||||
if ( ZM_HAS_V4L1 && $newMonitor['Method'] == 'v4l1' ) {
|
||||
?>
|
||||
<tr><td><?php echo translate('DeviceChannel') ?></td><td><select name="newMonitor[Channel]"><?php foreach ( $v4l1DeviceChannels as $name => $value ) { ?><option value="<?php echo $value ?>"<?php if ( $value == $newMonitor['Channel'] ) { ?> selected="selected"<?php } ?>><?php echo $name ?></option><?php } ?></select></td></tr>
|
||||
<tr><td><?php echo translate('DeviceFormat') ?></td><td><select name="newMonitor[Format]"><?php foreach ( $v4l1DeviceFormats as $name => $value ) { ?><option value="<?php echo $value ?>"<?php if ( $value == $newMonitor['Format'] ) { ?> selected="selected"<?php } ?>><?php echo $name ?></option><?php } ?></select></td></tr>
|
||||
<tr><td><?php echo translate('CapturePalette') ?></td><td><select name="newMonitor[Palette]"><?php foreach ( $v4l1LocalPalettes as $name => $value ) { ?><option value="<?php echo $value ?>"<?php if ( $value == $newMonitor['Palette'] ) { ?> selected="selected"<?php } ?>><?php echo $name ?></option><?php } ?></select></td></tr>
|
||||
<?php
|
||||
} else {
|
||||
} else {
|
||||
?>
|
||||
<tr><td><?php echo translate('DeviceChannel') ?></td><td><select name="newMonitor[Channel]"><?php foreach ( $v4l2DeviceChannels as $name => $value ) { ?><option value="<?php echo $value ?>"<?php if ( $value == $newMonitor['Channel'] ) { ?> selected="selected"<?php } ?>><?php echo $name ?></option><?php } ?></select></td></tr>
|
||||
<tr><td><?php echo translate('DeviceFormat') ?></td><td><select name="newMonitor[Format]"><?php foreach ( $v4l2DeviceFormats as $name => $value ) { ?><option value="<?php echo $value ?>"<?php if ( $value == $newMonitor['Format'] ) { ?> selected="selected"<?php } ?>><?php echo $name ?></option><?php } ?></select></td></tr>
|
||||
<tr><td><?php echo translate('CapturePalette') ?></td><td><select name="newMonitor[Palette]"><?php foreach ( $v4l2LocalPalettes as $name => $value ) { ?><option value="<?php echo $value ?>"<?php if ( $value == $newMonitor['Palette'] ) { ?> selected="selected"<?php } ?>><?php echo $name ?></option><?php } ?></select></td></tr>
|
||||
<?php
|
||||
}
|
||||
}
|
||||
?>
|
||||
<tr><td><?php echo translate('V4LMultiBuffer') ?></td><td>
|
||||
<input type="radio" name="newMonitor[V4LMultiBuffer]" id="newMonitor[V4LMultiBuffer]1" value="1" <?php echo ( $newMonitor['V4LMultiBuffer'] == 1 ? 'checked="checked"' : '' ) ?>/>
|
||||
<label for="newMonitor[V4LMultiBuffer]1">Yes</label>
|
||||
<input type="radio" name="newMonitor[V4LMultiBuffer]" id="newMonitor[V4LMultiBuffer]0" value="0" <?php echo ( $newMonitor['V4LMultiBuffer'] == 0 ? 'checked="checked"' : '' ) ?>/>
|
||||
<label for="newMonitor[V4LMultiBuffer]0">No</label>
|
||||
<input type="radio" name="newMonitor[V4LMultiBuffer]" id="newMonitor[V4LMultiBuffer]" value="" <?php echo ( empty($newMonitor['V4LMultiBuffer']) ? 'checked="checked"' : '' ) ?>/>
|
||||
<label for="newMonitor[V4LMultiBuffer]">Use Config Value</label>
|
||||
</td></tr>
|
||||
<tr><td><?php echo translate('V4LCapturesPerFrame') ?></td><td><input type="number" name="newMonitor[V4LCapturesPerFrame]" value="<?php echo $newMonitor['V4LCapturesPerFrame'] ?>"/></td></tr>
|
||||
<tr><td><?php echo translate('V4LMultiBuffer') ?></td><td>
|
||||
<input type="radio" name="newMonitor[V4LMultiBuffer]" id="newMonitor[V4LMultiBuffer]1" value="1" <?php echo ( $newMonitor['V4LMultiBuffer'] == 1 ? 'checked="checked"' : '' ) ?>/>
|
||||
<label for="newMonitor[V4LMultiBuffer]1">Yes</label>
|
||||
<input type="radio" name="newMonitor[V4LMultiBuffer]" id="newMonitor[V4LMultiBuffer]0" value="0" <?php echo ( $newMonitor['V4LMultiBuffer'] == 0 ? 'checked="checked"' : '' ) ?>/>
|
||||
<label for="newMonitor[V4LMultiBuffer]0">No</label>
|
||||
<input type="radio" name="newMonitor[V4LMultiBuffer]" id="newMonitor[V4LMultiBuffer]" value="" <?php echo ( empty($newMonitor['V4LMultiBuffer']) ? 'checked="checked"' : '' ) ?>/>
|
||||
<label for="newMonitor[V4LMultiBuffer]">Use Config Value</label>
|
||||
</td></tr>
|
||||
<tr><td><?php echo translate('V4LCapturesPerFrame') ?></td><td><input type="number" name="newMonitor[V4LCapturesPerFrame]" value="<?php echo $newMonitor['V4LCapturesPerFrame'] ?>"/></td></tr>
|
||||
<?php
|
||||
} elseif ( $newMonitor['Type'] == 'Remote' ) {
|
||||
?>
|
||||
<tr><td><?php echo translate('RemoteProtocol') ?></td><td><?php echo buildSelect( "newMonitor[Protocol]", $remoteProtocols, "updateMethods( this );if(this.value=='rtsp'){\$('RTSPDescribe').setStyle('display','table-row');}else{\$('RTSPDescribe').hide();}" ); ?></td></tr>
|
||||
<?php
|
||||
if ( empty($newMonitor['Protocol']) || $newMonitor['Protocol'] == 'http' ) {
|
||||
if ( empty($newMonitor['Protocol']) || $newMonitor['Protocol'] == 'http' ) {
|
||||
?>
|
||||
<tr><td><?php echo translate('RemoteMethod') ?></td><td><?php echo buildSelect( 'newMonitor[Method]', $httpMethods ); ?></td></tr>
|
||||
<?php
|
||||
} else {
|
||||
} else {
|
||||
?>
|
||||
<tr><td><?php echo translate('RemoteMethod') ?></td><td><?php echo buildSelect( 'newMonitor[Method]', $rtspMethods ); ?></td></tr>
|
||||
<?php
|
||||
}
|
||||
}
|
||||
?>
|
||||
<tr><td><?php echo translate('RemoteHostName') ?></td><td><input type="text" name="newMonitor[Host]" value="<?php echo validHtmlStr($newMonitor['Host']) ?>" size="36"/></td></tr>
|
||||
<tr><td><?php echo translate('RemoteHostPort') ?></td><td><input type="text" name="newMonitor[Port]" value="<?php echo validHtmlStr($newMonitor['Port']) ?>" size="6"/></td></tr>
|
||||
|
@ -824,7 +823,10 @@ switch ( $tab ) {
|
|||
?>
|
||||
<tr><td><?php echo translate('SourcePath') ?></td><td><input type="text" name="newMonitor[Path]" value="<?php echo validHtmlStr($newMonitor['Path']) ?>" size="36"/></td></tr>
|
||||
<tr><td><?php echo translate('RemoteMethod') ?> (<?php echo makePopupLink('?view=optionhelp&option=OPTIONS_RTSPTrans', 'zmOptionHelp', 'optionhelp', '?' ) ?>)</td><td><?php echo buildSelect( "newMonitor[Method]", $rtspFFMpegMethods ); ?></td></tr>
|
||||
<tr><td><?php echo translate('Options') ?> (<?php echo makePopupLink( '?view=optionhelp&option=OPTIONS_'.strtoupper($newMonitor['Type']), 'zmOptionHelp', 'optionhelp', '?' ) ?>)</td><td><input type="text" name="newMonitor[Options]" value="<?php echo validHtmlStr($newMonitor['Options']) ?>" size="36"/></td></tr>
|
||||
<tr>
|
||||
<td><?php echo translate('Options') ?> (<?php echo makePopupLink( '?view=optionhelp&option=OPTIONS_'.strtoupper($newMonitor['Type']), 'zmOptionHelp', 'optionhelp', '?' ) ?>)</td>
|
||||
<td><input type="text" name="newMonitor[Options]" value="<?php echo validHtmlStr($newMonitor['Options']) ?>" size="36"/></td>
|
||||
</tr>
|
||||
<?php
|
||||
}
|
||||
?>
|
||||
|
@ -853,8 +855,9 @@ switch ( $tab ) {
|
|||
?>
|
||||
<?php
|
||||
break;
|
||||
}
|
||||
case 'storage' :
|
||||
}
|
||||
case 'storage' :
|
||||
{
|
||||
?>
|
||||
<tr><td><?php echo translate('SaveJPEGs') ?></td><td><select name="newMonitor[SaveJPEGs]"><?php foreach ( $savejpegopts as $name => $value ) { ?><option value="<?php echo $value ?>"<?php if ( $value == $newMonitor['SaveJPEGs'] ) { ?> selected="selected"<?php } ?>><?php echo $name ?></option><?php } ?></select></td></tr>
|
||||
<tr><td><?php echo translate('VideoWriter') ?></td><td><select name="newMonitor[VideoWriter]"><?php foreach ( $videowriteropts as $name => $value ) { ?><option value="<?php echo $value ?>"<?php if ( $value == $newMonitor['VideoWriter'] ) { ?> selected="selected"<?php } ?>><?php echo $name ?></option><?php } ?></select></td></tr>
|
||||
|
@ -862,8 +865,9 @@ switch ( $tab ) {
|
|||
<tr><td><?php echo translate('RecordAudio') ?></td><td><input type="checkbox" name="newMonitor[RecordAudio]" value="1"<?php if ( !empty($newMonitor['RecordAudio']) ) { ?> checked="checked"<?php } ?>/></td></tr>
|
||||
<?php
|
||||
break;
|
||||
}
|
||||
case 'timestamp' :
|
||||
{
|
||||
{
|
||||
?>
|
||||
<tr><td><?php echo translate('TimestampLabelFormat') ?></td><td><input type="text" name="newMonitor[LabelFormat]" value="<?php echo validHtmlStr($newMonitor['LabelFormat']) ?>" size="32"/></td></tr>
|
||||
<tr><td><?php echo translate('TimestampLabelX') ?></td><td><input type="text" name="newMonitor[LabelX]" value="<?php echo validHtmlStr($newMonitor['LabelX']) ?>" size="4"/></td></tr>
|
||||
|
@ -871,9 +875,9 @@ switch ( $tab ) {
|
|||
<tr><td><?php echo translate('TimestampLabelSize') ?></td><td><select name="newMonitor[LabelSize]"><?php foreach ( $label_size as $name => $value ) { ?><option value="<?php echo $value ?>"<?php if ( $value == $newMonitor['LabelSize'] ) { ?> selected="selected"<?php } ?>><?php echo $name ?></option><?php } ?></select></td></tr>
|
||||
<?php
|
||||
break;
|
||||
}
|
||||
}
|
||||
case 'buffers' :
|
||||
{
|
||||
{
|
||||
?>
|
||||
<tr><td><?php echo translate('ImageBufferSize') ?></td><td><input type="text" name="newMonitor[ImageBufferCount]" value="<?php echo validHtmlStr($newMonitor['ImageBufferCount']) ?>" size="6"/></td></tr>
|
||||
<tr><td><?php echo translate('WarmupFrames') ?></td><td><input type="text" name="newMonitor[WarmupCount]" value="<?php echo validHtmlStr($newMonitor['WarmupCount']) ?>" size="4"/></td></tr>
|
||||
|
@ -883,9 +887,9 @@ switch ( $tab ) {
|
|||
<tr><td><?php echo translate('AlarmFrameCount') ?></td><td><input type="text" name="newMonitor[AlarmFrameCount]" value="<?php echo validHtmlStr($newMonitor['AlarmFrameCount']) ?>" size="4"/></td></tr>
|
||||
<?php
|
||||
break;
|
||||
}
|
||||
}
|
||||
case 'control' :
|
||||
{
|
||||
{
|
||||
?>
|
||||
<tr><td><?php echo translate('Controllable') ?></td><td><input type="checkbox" name="newMonitor[Controllable]" value="1"<?php if ( !empty($newMonitor['Controllable']) ) { ?> checked="checked"<?php } ?>/></td></tr>
|
||||
<tr><td><?php echo translate('ControlType') ?></td><td><?php echo buildSelect( "newMonitor[ControlId]", $controlTypes, 'loadLocations( this )' ); ?><?php if ( canEdit( 'Control' ) ) { ?> <a href="#" onclick="createPopup( '?view=controlcaps', 'zmControlCaps', 'controlcaps' );"><?php echo translate('Edit') ?></a><?php } ?></td></tr>
|
||||
|
@ -905,18 +909,18 @@ switch ( $tab ) {
|
|||
<tr><td><?php echo translate('ReturnDelay') ?></td><td><input type="text" name="newMonitor[ReturnDelay]" value="<?php echo validHtmlStr($newMonitor['ReturnDelay']) ?>" size="4"/></td></tr>
|
||||
<?php
|
||||
break;
|
||||
}
|
||||
}
|
||||
case 'x10' :
|
||||
{
|
||||
{
|
||||
?>
|
||||
<tr><td><?php echo translate('X10ActivationString') ?></td><td><input type="text" name="newX10Monitor[Activation]" value="<?php echo validHtmlStr($newX10Monitor['Activation']) ?>" size="20"/></td></tr>
|
||||
<tr><td><?php echo translate('X10InputAlarmString') ?></td><td><input type="text" name="newX10Monitor[AlarmInput]" value="<?php echo validHtmlStr($newX10Monitor['AlarmInput']) ?>" size="20"/></td></tr>
|
||||
<tr><td><?php echo translate('X10OutputAlarmString') ?></td><td><input type="text" name="newX10Monitor[AlarmOutput]" value="<?php echo validHtmlStr($newX10Monitor['AlarmOutput']) ?>" size="20"/></td></tr>
|
||||
<?php
|
||||
break;
|
||||
}
|
||||
}
|
||||
case 'misc' :
|
||||
{
|
||||
{
|
||||
?>
|
||||
<tr><td><?php echo translate('EventPrefix') ?></td><td><input type="text" name="newMonitor[EventPrefix]" value="<?php echo validHtmlStr($newMonitor['EventPrefix']) ?>" size="24"/></td></tr>
|
||||
<tr><td><?php echo translate('Sectionlength') ?></td><td><input type="text" name="newMonitor[SectionLength]" value="<?php echo validHtmlStr($newMonitor['SectionLength']) ?>" size="6"/></td></tr>
|
||||
|
@ -948,8 +952,8 @@ switch ( $tab ) {
|
|||
<tr><td><?php echo translate('Exif') ?> (<?php echo makePopupLink( '?view=optionhelp&option=OPTIONS_EXIF', 'zmOptionHelp', 'optionhelp', '?' ) ?>) </td><td><input type="checkbox" name="newMonitor[Exif]" value="1"<?php if ( !empty($newMonitor['Exif']) ) { ?> checked="checked"<?php } ?>/></td></tr>
|
||||
<?php
|
||||
break;
|
||||
}
|
||||
} // end switch tab
|
||||
}
|
||||
} // end switch tab
|
||||
?>
|
||||
</tbody>
|
||||
</table>
|
||||
|
|
Loading…
Reference in New Issue