We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 19602ef commit 0d9e4e3Copy full SHA for 0d9e4e3
includes/jobqueue.php
@@ -70,6 +70,7 @@
70
define('JOB_SYSTEMJOB', 0x00ff);
71
define('JOB_TRANSCODE', 0x0001);
72
define('JOB_COMMFLAG', 0x0002);
73
+ define('JOB_METADATA', 0x0004);
74
define('JOB_USERJOB', 0xff00);
75
define('JOB_USERJOB1', 0x0100);
76
define('JOB_USERJOB2', 0x0200);
@@ -82,7 +83,8 @@
82
83
/**/
84
global $Jobs;
85
$Jobs = array(JOB_TRANSCODE => t('Transcode'),
- JOB_COMMFLAG => t('Flag Commercials')
86
+ JOB_COMMFLAG => t('Flag Commercials'),
87
+ JOB_METADATA => t('Look up Metadata')
88
);
89
90
// Load up any defined user jobs
0 commit comments