diff --git a/docs/pages/about/Branding.md b/docs/pages/about/Branding.md index a8a38f8..e6c5dba 100644 --- a/docs/pages/about/Branding.md +++ b/docs/pages/about/Branding.md @@ -64,4 +64,6 @@ Blueprint is called **Blueprint**, no capital P and no space between "blue" and
### Brand Kit -All assets (including marketplace banners, placeholder icons and other miscellaneous assets) are bundled with releases and are located in `blueprint/assets/`. \ No newline at end of file +All assets (including marketplace banners, placeholder icons and other miscellaneous assets) are bundled with releases and are located in `blueprint/assets/` (`.blueprint/assets` on Pterodactyl installations). + +You can also download assets [from our GitHub repository](https://github.com/teamblueprint/main/tree/main/blueprint/assets) which contains up-to-date brand material. \ No newline at end of file diff --git a/docs/pages/developing-extensions/Admin-configuration.md b/docs/pages/developing-extensions/Admin-configuration.md index f832ad2..6279d6c 100644 --- a/docs/pages/developing-extensions/Admin-configuration.md +++ b/docs/pages/developing-extensions/Admin-configuration.md @@ -1,6 +1,11 @@ # Admin configuration

Add configuration options to your extension's admin page


+
+
Previous Next diff --git a/docs/pages/developing-extensions/Admin-views.md b/docs/pages/developing-extensions/Admin-views.md index 8ef77cf..84fe7cd 100644 --- a/docs/pages/developing-extensions/Admin-views.md +++ b/docs/pages/developing-extensions/Admin-views.md @@ -1,7 +1,7 @@ # Admin views

Learn the basics of extension admin pages


-After setting up your development template (Barebones) in the previous guide, you can now start writing an admin view. +After setting up your development template (Barebones) [in the previous guide](?page=getting-started/Extension-development), you can now start writing an admin view. The Barebones template includes two files by default, `conf.yml` and `admin.blade.php`. We'll take a look at `conf.yml` later, but first, open `admin.blade.php` and add the following code: @@ -60,7 +60,9 @@ We can achieve this with the `box` css class, which is included in the Pterodact
- +
+ +You have now created your very own admin page through Blueprint. Customize it however you like, we won't judge.
diff --git a/docs/pages/developing-extensions/Custom-controllers.md b/docs/pages/developing-extensions/Custom-controllers.md index 6354b0c..c30f49e 100644 --- a/docs/pages/developing-extensions/Custom-controllers.md +++ b/docs/pages/developing-extensions/Custom-controllers.md @@ -1,6 +1,11 @@ # Custom controllers

Write custom controllers instead of using the premade one


+
+
Previous Next diff --git a/docs/pages/developing-extensions/Importing-$blueprint.md b/docs/pages/developing-extensions/Importing-$blueprint.md index 4acc8cf..41839d7 100644 --- a/docs/pages/developing-extensions/Importing-$blueprint.md +++ b/docs/pages/developing-extensions/Importing-$blueprint.md @@ -1,6 +1,11 @@ # Importing $blueprint

Import the BlueprintExtensionLibrary into your admin controller


+
+
Previous Next diff --git a/docs/pages/documentation/$blueprint.md b/docs/pages/documentation/$blueprint.md index f2de30f..f7e2e85 100644 --- a/docs/pages/documentation/$blueprint.md +++ b/docs/pages/documentation/$blueprint.md @@ -16,7 +16,7 @@ The BlueprintExtensionLibrary is automatically imported to dashboard wrappers, a ### **Functions** -##### Databasing Universal +##### Databasing Universal `dbGet(table, record)`\ Returns a database value. Will be fetched as "table::record". @@ -25,7 +25,7 @@ Sets a database value. Will be set as "table::record", "value".
-##### Notifications Admin +##### Notifications Admin `notify(text)`\ Allows you to show notifications on the admin panel. Appears on next reload. @@ -37,7 +37,7 @@ Allows you to show notifications on the admin panel after a delay. This behaves
-##### Files Universal +##### Files Universal `fileRead(path)`\ Returns the contents of the file defined in "path". diff --git a/docs/pages/documentation/flags.md b/docs/pages/documentation/flags.md index 99b785f..239b2ff 100644 --- a/docs/pages/documentation/flags.md +++ b/docs/pages/documentation/flags.md @@ -32,3 +32,6 @@ In the middle of the export process, extensions with this flag will be able to r ##### Developer flags `developerIgnoreInstallScript`\ Ignore the custom extension installation script when installing your extension through developer commands. + +`developerIgnoreRebuild` New in alpha-NLM\ +Skip rebuilding panel assets when installing your extension through developer commands. \ No newline at end of file