getConfigurations('conversion_video_que,conversion_short_que,conversion_image_que,conversion_audio_que,conversion_document_que'); $conv = new VQue(); if ($cfg["video_module"] == 1 and $cfg["conversion_video_que"] == 1 and $conv->load("video")) { if ($conv->check()) { $conv->startConversion(); echo "\n"; } } if ($cfg["short_module"] == 1 and $cfg["conversion_short_que"] == 1 and $conv->load("short")) { if ($conv->check()) { $conv->startConversion(); echo "\n"; } } if ($cfg["image_module"] == 1 and $cfg["conversion_image_que"] == 1 and $conv->load("image")) { if ($conv->check()) { $conv->startConversion(); echo "\n"; } } if ($cfg["audio_module"] == 1 and $cfg["conversion_audio_que"] == 1 and $conv->load("audio")) { if ($conv->check()) { $conv->startConversion(); echo "\n"; } } if ($cfg["document_module"] == 1 and $cfg["conversion_document_que"] == 1 and $conv->load("doc")) { if ($conv->check()) { $conv->startConversion(); echo "\n"; } }