MediaWiki  1.29.2
SearchSuggestion.php
Go to the documentation of this file.
1 <?php
2 
29  private $text;
30 
34  private $url;
35 
39  private $suggestedTitle;
40 
47 
51  private $score;
52 
60  public function __construct( $score, $text = null, Title $suggestedTitle = null,
61  $suggestedTitleID = null ) {
62  $this->score = $score;
63  $this->text = $text;
64  if ( $suggestedTitle ) {
66  }
67  $this->suggestedTitleID = $suggestedTitleID;
68  }
69 
74  public function getText() {
75  return $this->text;
76  }
77 
83  public function setText( $text, $setTitle = true ) {
84  $this->text = $text;
85  if ( $setTitle && $text !== '' && $text !== null ) {
87  }
88  }
89 
95  public function getSuggestedTitle() {
96  return $this->suggestedTitle;
97  }
98 
103  public function setSuggestedTitle( Title $title = null ) {
104  $this->suggestedTitle = $title;
105  if ( $title !== null ) {
106  $this->url = wfExpandUrl( $title->getFullURL(), PROTO_CURRENT );
107  }
108  }
109 
115  public function getSuggestedTitleID() {
117  }
118 
123  public function setSuggestedTitleID( $suggestedTitleID = null ) {
124  $this->suggestedTitleID = $suggestedTitleID;
125  }
126 
131  public function getScore() {
132  return $this->score;
133  }
134 
139  public function setScore( $score ) {
140  $this->score = $score;
141  }
142 
148  public function getURL() {
149  return $this->url;
150  }
151 
156  public function setURL( $url ) {
157  $this->url = $url;
158  }
159 
166  public static function fromTitle( $score, Title $title ) {
167  return new self( $score, $title->getPrefixedText(), $title, $title->getArticleID() );
168  }
169 
177  public static function fromText( $score, $text ) {
178  $suggestion = new self( $score, $text );
179  if ( $text ) {
180  $suggestion->setSuggestedTitle( Title::makeTitle( 0, $text ) );
181  }
182  return $suggestion;
183  }
184 
185 }
SearchSuggestion\setSuggestedTitleID
setSuggestedTitleID( $suggestedTitleID=null)
Set the suggested title ID.
Definition: SearchSuggestion.php:123
text
design txt This is a brief overview of the new design More thorough and up to date information is available on the documentation wiki at etc Handles the details of getting and saving to the user table of the and dealing with sessions and cookies OutputPage Encapsulates the entire HTML page that will be sent in response to any server request It is used by calling its functions to add text
Definition: design.txt:12
SearchSuggestion\setScore
setScore( $score)
Set the suggestion score.
Definition: SearchSuggestion.php:139
SearchSuggestion\$score
float null $score
The suggestion score.
Definition: SearchSuggestion.php:51
SearchSuggestion\getURL
getURL()
Suggestion URL, can be the link to the Title or maybe in the future a link to the search results for ...
Definition: SearchSuggestion.php:148
SearchSuggestion\$url
string $url
the suggestion URL
Definition: SearchSuggestion.php:34
SearchSuggestion\__construct
__construct( $score, $text=null, Title $suggestedTitle=null, $suggestedTitleID=null)
Construct a new suggestion.
Definition: SearchSuggestion.php:60
php
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
Definition: injection.txt:35
SearchSuggestion\fromTitle
static fromTitle( $score, Title $title)
Create suggestion from Title.
Definition: SearchSuggestion.php:166
$title
namespace and then decline to actually register it file or subcat img or subcat $title
Definition: hooks.txt:934
SearchSuggestion\$suggestedTitleID
int null $suggestedTitleID
NOTE: even if suggestedTitle is a redirect suggestedTitleID is the ID of the target page.
Definition: SearchSuggestion.php:46
SearchSuggestion\getSuggestedTitleID
getSuggestedTitleID()
Title ID in the case this suggestion is based on a title.
Definition: SearchSuggestion.php:115
SearchSuggestion\setURL
setURL( $url)
Set the suggestion URL.
Definition: SearchSuggestion.php:156
PROTO_CURRENT
const PROTO_CURRENT
Definition: Defines.php:220
SearchSuggestion
Search suggestion.
Definition: SearchSuggestion.php:25
Title\makeTitle
static makeTitle( $ns, $title, $fragment='', $interwiki='')
Create a new Title from a namespace index and a DB key.
Definition: Title.php:514
SearchSuggestion\setText
setText( $text, $setTitle=true)
Set the suggestion text.
Definition: SearchSuggestion.php:83
SearchSuggestion\$text
string $text
the suggestion
Definition: SearchSuggestion.php:29
SearchSuggestion\setSuggestedTitle
setSuggestedTitle(Title $title=null)
Set the suggested title.
Definition: SearchSuggestion.php:103
SearchSuggestion\$suggestedTitle
Title null $suggestedTitle
the suggested title
Definition: SearchSuggestion.php:39
SearchSuggestion\getSuggestedTitle
getSuggestedTitle()
Title object in the case this suggestion is based on a title.
Definition: SearchSuggestion.php:95
SearchSuggestion\getText
getText()
The suggestion text.
Definition: SearchSuggestion.php:74
Title
Represents a title within MediaWiki.
Definition: Title.php:39
SearchSuggestion\fromText
static fromText( $score, $text)
Create suggestion from text Will also create a title if text if not empty.
Definition: SearchSuggestion.php:177
SearchSuggestion\getScore
getScore()
Suggestion score.
Definition: SearchSuggestion.php:131
wfExpandUrl
wfExpandUrl( $url, $defaultProto=PROTO_CURRENT)
Expand a potentially local URL to a fully-qualified URL.
Definition: GlobalFunctions.php:552