コード例 #1
0
ファイル: SpecialPage.php プロジェクト: seedbank/old-repo
 /**
  * Return categorised listable special pages which are available
  * for the current user, but not for everyone
  *
  * @return array Associative array mapping page's name to its SpecialPage object
  * @deprecated since 1.18 call SpecialPageFactory method directly
  */
 static function getRestrictedPages()
 {
     wfDeprecated(__METHOD__, '1.18');
     return SpecialPageFactory::getRestrictedPages();
 }
コード例 #2
0
ファイル: SpecialPage.php プロジェクト: eFFemeer/seizamcore
 /**
  * Return categorised listable special pages which are available
  * for the current user, but not for everyone
  *
  * @return Associative array mapping page's name to its SpecialPage object
  * @deprecated since 1.18 call SpecialPageFactory method directly
  */
 static function getRestrictedPages()
 {
     return SpecialPageFactory::getRestrictedPages();
 }