32 lines
534 B
PHP
32 lines
534 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;
|
|
}
|
|
} |