public static function checkForTranscodeStatus( $article, &$html ){
		// load the file: 
		$file = wfFindFile( $article->getTitle() );
		if( self::isTranscodableFile( $file ) ){
			$html = TranscodeStatusTable::getHTML( $file );
		}
		return true;
	}
	public static function getLinker() {
	    if ( is_null( self::$linker ) ) {
		    self::$linker = new Linker();
	    }
	}