예제 #1
0
 /**
  * Return categorised listable special pages for all users
  *
  * @return array Associative array mapping page's name to its SpecialPage object
  * @deprecated since 1.18 call SpecialPageFactory method directly
  */
 static function getRegularPages()
 {
     wfDeprecated(__METHOD__, '1.18');
     return SpecialPageFactory::getRegularPages();
 }
예제 #2
0
 /**
  * Return categorised listable special pages for all users
  *
  * @return Associative array mapping page's name to its SpecialPage object
  * @deprecated since 1.18 call SpecialPageFactory method directly
  */
 static function getRegularPages()
 {
     return SpecialPageFactory::getRegularPages();
 }