X-Git-Url: http://git.cyclocoop.org/?a=blobdiff_plain;f=includes%2Fresourceloader%2FResourceLoaderFileModule.php;h=2dcc841e92a83329630067666c55c6f175ee0ebc;hb=d56829dca8d33e4e69fe5a57dea4ffdbfbccf873;hp=574e5358ebe209087331ba9837f8dbe41f9379ee;hpb=3979e37fcfa62e6d7282b58774a7e17a27fc36e1;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/resourceloader/ResourceLoaderFileModule.php b/includes/resourceloader/ResourceLoaderFileModule.php index 574e5358eb..2dcc841e92 100644 --- a/includes/resourceloader/ResourceLoaderFileModule.php +++ b/includes/resourceloader/ResourceLoaderFileModule.php @@ -177,26 +177,26 @@ class ResourceLoaderFileModule extends ResourceLoaderModule { * // Scripts to always include * 'scripts' => [file path string or array of file path strings], * // Scripts to include in specific language contexts - * 'languageScripts' => array( + * 'languageScripts' => [ * [language code] => [file path string or array of file path strings], - * ), + * ], * // Scripts to include in specific skin contexts - * 'skinScripts' => array( + * 'skinScripts' => [ * [skin name] => [file path string or array of file path strings], - * ), + * ], * // Scripts to include in debug contexts * 'debugScripts' => [file path string or array of file path strings], * // Modules which must be loaded before this module * 'dependencies' => [module name string or array of module name strings], - * 'templates' => array( + * 'templates' => [ * [template alias with file.ext] => [file path to a template file], - * ), + * ], * // Styles to always load * 'styles' => [file path string or array of file path strings], * // Styles to include in specific skin contexts - * 'skinStyles' => array( + * 'skinStyles' => [ * [skin name] => [file path string or array of file path strings], - * ), + * ], * // Messages to always load * 'messages' => [array of message key strings], * // Group which this module should be loaded together with