Files
AnatImageViewer/includes/AnnotationContent.php
Justin Georgi c4e783dd9d Stuck point
Signed-off-by: Justin Georgi <justin.georgi@gmail.com>
2026-05-18 08:56:56 -07:00

32 lines
530 B
PHP

<?php
namespace MediaWiki\Extension\AnatImageViewer;
use TextContent;
class AnnotationContent extends TextContent {
public function __construct( $modelId = 'annotation' ) {
parent::__construct( $modelId );
}
/*
public function getTextForSearchIndex() {
}
public function getWikitextForTransclusion() {
}
public function getTextForSummary( $maxLength = 250 ) {
}
public function getSize() {
}
public function copy() {
}
*/
public function isCountable( $hasLinks = null ) {
return false;
}
}