Ejemplo n.º 1
0
 /**
  * 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();
 }
Ejemplo n.º 2
0
 /**
  * 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();
 }