You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Broadcast `queue:restart` command on extension transaction.
22
21
- Deprecated flags now provide warnings on extension transactions.
23
22
- Add private version of ExtensionFS (`blueprint_private:<identifier>`) that is symlinked to the extension's private directory.
24
-
-[`Components.yml`](?page=documentation/componentsyml) has a new "Global" scope.
23
+
-[`Components.yml`](?page=documentation/componentsyml) has a new "Global" scope within "Dashboard".
24
+
- Install, remove and export scripts now have access to the `$ENGINE` environment variable.
25
25
26
26
<br/>
27
27
@@ -33,7 +33,7 @@
33
33
<br/>
34
34
35
35
#### Breaking Changes
36
-
-[`Conf.yml`](?page=documentation/confyml)`requests_controllers` has been deprecated and will alias to `requests_app`. This does not change implementation and can be resolved by renaming the configuration option.
36
+
-[`conf.yml`](?page=documentation/confyml)`requests_controllers` has been deprecated and will alias to `requests_app`. This does not change implementation and can be resolved by renaming the configuration option.
37
37
-[BlueprintExtensionLibrary](?page=documentation/$blueprint)'s `dbGet($table, $record)` method now returns `null` when a value is empty, instead of returning an empty string.
38
38
-[BlueprintExtensionLibrary](?page=documentation/$blueprint)'s **legacy variation** is being phased out. All `notify` and `file` methods now return false. This does not impact admin, client and console variations.
39
39
- Resolved docs/implementation mismatch causing `requests_routers` to default to `application` instead of `web`. Backwards compatibility is not provided with this change.
Copy file name to clipboardExpand all lines: docs/pages/documentation/scripts.md
+46-1Lines changed: 46 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -20,4 +20,49 @@ Scripts can **prevent extensions from being listed** on the [extension browse li
20
20
- Updating extensions utilizing scripts must not break their modifications.
21
21
- Scripts should use **environment variables** or [placeholders](?page=documentation/placeholders) for detecting the webserver folder.
22
22
23
-
**Export scripts are free from (most of) these limitations** as they are specifically made to help the developer automate actions upon export. As long as you don't cause permanent damages through export scripts, you should be fine.
23
+
**Export scripts are free from (most of) these limitations** as they are specifically made to help the developer automate actions upon export. As long as you don't cause permanent damages through export scripts, you should be fine.
24
+
25
+
<br/>
26
+
27
+
### **Environment variables**
28
+
These variables can be used anywhere in your scripts and are automatically assigned the correct value by Blueprint.
0 commit comments