diff --git a/README.md b/README.md index 50513c4..b2f5c9e 100644 --- a/README.md +++ b/README.md @@ -1,17 +1,5 @@ # Introduction -This developer guides intention is to provide useful information -for developers to help you to understand the structure of the -application, important classes, workflows and standards for -code quality as well as code style. The intention is to provide -enough information to get a basic understanding of these -key elements for module developers, frontend developers or -developers working on the core application. +This developer guides intention is to provide useful information for developers to help you to understand the structure of the application, important classes, workflows and standards for code quality as well as code style. The intention is to provide enough information to get a basic understanding of these key elements for module developers, frontend developers or developers working on the core application. -The guide is **not** explaining in detail how to use classes, -for this you can find the automatically generated code -documentation. All the provided information are very important -to ensure the quality of the published code and often are mandatory. -Not following these guides can cause security issues, worsen the -user experience or even cause malfunction as well as make it -difficult for other developers to understand the code. \ No newline at end of file +The guide is **not** explaining in detail how to use classes, for this you can find the automatically generated code documentation. All the provided information are very important to ensure the quality of the published code and often are mandatory. Not following these guides can cause security issues, worsen the user experience or even cause malfunction as well as make it difficult for other developers to understand the code. \ No newline at end of file diff --git a/caching,_sessions,_local_storage_&_cookies.md b/caching,_sessions,_local_storage_&_cookies.md index 6b56cf6..577bc76 100644 --- a/caching,_sessions,_local_storage_&_cookies.md +++ b/caching,_sessions,_local_storage_&_cookies.md @@ -19,7 +19,7 @@ In order to trigger a re-cache of stylesheets or javascript files make sure to u Example usage: ``` -$head->addAsset(AssetType::JS, $request->getUri()->getBase() . 'Modules/Media/ModuleMedia.js?v=' . self::MODULE_VERSION); +$head->addAsset(AssetType::JS, $request->getUri()->getBase() . 'Modules/Media/Controller.js?v=' . self::MODULE_VERSION); ``` ## Sessions diff --git a/modules.md b/modules.md index 0ff83a5..4364a48 100644 --- a/modules.md +++ b/modules.md @@ -28,14 +28,13 @@ The following directory structure should roughly visualize how modules are struc * yourTemplateImages.jpg * Lang * en.lang.php - * navigation.en.lang.php + * Navigation.en.lang.php * your_template_files.tpl.php * Views * YourPhpViews.php * YourJavaScriptViews.js * Controller.php * Controller.js - * Module{UniqueModuleName}.js * info.json All modules are located inside the `/Modules` directory and their directory name has to be the module name itself without whitespaces.