42 private $suggestedTitle;
49 private $suggestedTitleID;
63 $suggestedTitleID =
null ) {
64 $this->score = $score;
66 if ( $suggestedTitle ) {
69 $this->suggestedTitleID = $suggestedTitleID;
85 public function setText( $text, $setTitle =
true ) {
87 if ( $setTitle && $text !==
'' && $text !==
null ) {
98 return $this->suggestedTitle;
105 $this->suggestedTitle = $title;
106 if ( $title !==
null ) {
107 $urlUtils = MediaWikiServices::getInstance()->getUrlUtils();
108 $this->url = $urlUtils->expand( $title->getFullURL(),
PROTO_CURRENT ) ??
false;
118 return $this->suggestedTitleID;
125 $this->suggestedTitleID = $suggestedTitleID;
141 $this->score = $score;
179 $suggestion =
new self( $score, $text );
181 $suggestion->setSuggestedTitle( Title::newFromText( $text ) );
static fromText( $score, $text)
Create suggestion from text Will also create a title if text if not empty.
getSuggestedTitleID()
Title ID in the case this suggestion is based on a title.
setSuggestedTitle(Title $title=null)
setText( $text, $setTitle=true)
Set the suggestion text.
setURL( $url)
Set the suggestion URL.
setSuggestedTitleID( $suggestedTitleID=null)
getSuggestedTitle()
Title object in the case this suggestion is based on a title.
setScore( $score)
Set the suggestion score.
getURL()
Suggestion URL, can be the link to the Title or maybe in the future a link to the search results for ...
__construct( $score, $text=null, Title $suggestedTitle=null, $suggestedTitleID=null)
getScore()
Suggestion score.
getText()
The suggestion text.
static fromTitle( $score, Title $title)
Create suggestion from Title.