getData(); } /** * Constructs an UnknownContent instance wrapping the given data. * * @since 1.21 * * @param string $blob serialized content in an unknown format * @param string|null $format ignored * * @return Content The UnknownContent object wrapping $data */ public function unserializeContent( $blob, $format = null ) { return new UnknownContent( $blob, $this->getModelID() ); } /** * Creates an empty UnknownContent object. * * @since 1.21 * * @return Content A new UnknownContent object with empty text. */ public function makeEmptyContent() { return $this->unserializeContent( '' ); } /** * @return false */ public function supportsDirectEditing() { return false; } /** * @param IContextSource $context * * @return SlotDiffRenderer */ protected function getSlotDiffRendererInternal( IContextSource $context ) { return new UnsupportedSlotDiffRenderer( $context ); } }