コード例 #1
0
ファイル: WikitextContent.php プロジェクト: mangowi/mediawiki
 /**
  * @see  Content::matchMagicWord()
  *
  * This implementation calls $word->match() on the this TextContent object's text.
  *
  * @param MagicWord $word
  *
  * @return bool whether this Content object matches the given magic word.
  */
 public function matchMagicWord(MagicWord $word)
 {
     return $word->match($this->getNativeData());
 }