41 private $suggestedTitle;
48 private $suggestedTitleID;
62 $suggestedTitleID =
null ) {
63 $this->score = $score;
65 if ( $suggestedTitle ) {
68 $this->suggestedTitleID = $suggestedTitleID;
84 public function setText( $text, $setTitle =
true ) {
86 if ( $setTitle && $text !==
'' && $text !==
null ) {
97 return $this->suggestedTitle;
104 $this->suggestedTitle =
$title;
116 return $this->suggestedTitleID;
123 $this->suggestedTitleID = $suggestedTitleID;
139 $this->score = $score;
177 $suggestion =
new self( $score, $text );
179 $suggestion->setSuggestedTitle( Title::newFromText( $text ) );
wfExpandUrl( $url, $defaultProto=PROTO_CURRENT)
Expand a potentially local URL to a fully-qualified URL.
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.