Creating or removing Interactions can now be done outside the CMS via the BMP CLI.
...
Create interaction
Code Block | ||||
---|---|---|---|---|
| ||||
blinkm bmp create interaction <name> --type<type> --remote |
...
Now we are ready to start creating interactions.
Code Block | ||||
---|---|---|---|---|
| ||||
blinkm bmp create interaction default |
...
Now lets create an interaction using the --remote option
Code Block | ||||
---|---|---|---|---|
| ||||
blinkm bmp create interaction myinteraction --remote |
...
Lets now deploy the interactions to the BMP
Code Block | ||||
---|---|---|---|---|
| ||||
blinkm bmp deploy |
Editing interaction files
Anchor | ||||
---|---|---|---|---|
|
...
This file containing most of your interactions settings.
Code Block | ||||||||
---|---|---|---|---|---|---|---|---|
| ||||||||
{ "allow_mobi": "yes", "config": { "all": { "type": "madl code" }, "default": { "display": "hide", "displayName": "default", "madl": { "$file": "default.madl.php" } } }, "id": "100654", "name": "default", "registered_only": "allow all", "restricted": "no", "status": "active", "tags": null } |
...
Item | Description | CMS Menu | Options |
---|---|---|---|
display | Hidden Items Are Not Displayed In Lists But Are Otherwise Still Accessible | Display | hide / show |
displayName | Caption or title to display to users | Display Name | |
status | Inactive Items Are Hidden And Treated As Though They Do Not Exist | Status | active / inactive |
...