Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Creating  or removing Interactions can now be done outside the CMS via the BMP CLI.

...

Create interaction

Code Block
languagebash
themeRDark
blinkm bmp create interaction <name>  --type<type>   --remote

...

Now we are ready to start creating interactions.

Code Block
languagebash
themeRDark
blinkm bmp create interaction default

...

Now lets create an interaction using the --remote option

Code Block
languagebash
themeRDark
blinkm bmp create interaction myinteraction --remote

...

Lets now deploy the interactions to the BMP

Code Block
languagebash
themeRDark
blinkm bmp deploy


Editing interaction files
Anchor
InterEdit
InterEdit

...

This file containing most of your interactions settings.

Code Block
languagejs
themeRDark
titleThe example "default.json" codecollapsetrue
{
  "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
}

...

ItemDescriptionCMS MenuOptions
displayHidden Items Are Not Displayed In Lists But Are Otherwise Still AccessibleDisplayhide / show
displayNameCaption or title to display to usersDisplay Name 
statusInactive Items Are Hidden And Treated As Though They Do Not ExistStatusactive / inactive

 

 

...