widget-video.php dosyası iki kere include edildiği için bu hatayı alıyorsunuz.

require(PT_FRAMEWORK . '/widget-video.php');

veya

include(PT_FRAMEWORK . '/widget-video.php');

bir kod varsa bunu

require_once(PT_FRAMEWORK . '/widget-video.php');

yapmalısın.