Index: trunk/phase3/includes/DefaultSettings.php |
— | — | @@ -2268,11 +2268,16 @@ |
2269 | 2269 | * a new block. Though note that you may need to add some custom css to get good styling |
2270 | 2270 | * of new blocks in monobook. vector and modern should work without any special css. |
2271 | 2271 | * |
2272 | | - * $wgFooterIcons itself is a key/value array. The key being the name of a block that |
2273 | | - * icons will be wrapped in. The final id varries by skin. |
2274 | | - * The value being a key/value array of icons. The key may or may not be used by the |
| 2272 | + * $wgFooterIcons itself is a key/value array. |
| 2273 | + * The key os the name of a block that the icons will be wrapped in. |
| 2274 | + * The final id varries by skin; Monobook and Vector will turn poweredby into f-poweredbyico |
| 2275 | + * while Modern turns it into mw_poweredby. |
| 2276 | + * The value is a key/value array of icons. The key may or may not be used by the |
2275 | 2277 | * skin but it can be used to find the icon and unset it or change the icon if needed. |
2276 | | - * The innermost array has the following keys: |
| 2278 | + * This is useful for disabling icons that are set by extensions. |
| 2279 | + * The value should be either a string or an array. |
| 2280 | + * If it is a string it will be output directly, however some skins may choose to ignore it. |
| 2281 | + * An array is the preferred format for the icon, the following keys are used: |
2277 | 2282 | * src: An absolute url to the image to use for the icon, this is recommended |
2278 | 2283 | * but not required, however some skins will ignore icons without an image |
2279 | 2284 | * url: The url to use in the <a> arround the text or icon, if not set an <a> will not be outputted |