Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Updated underscore notation to dash notation problem.

...

Note
titleAction Names with Dots and UnderscoresDashes

Although action naming is pretty flexible, one should pay attention when using dots (eg. create.user) and/or underscores dashes (eg. my_-action). While the dot notation has no known side effects at this time, the underscore dash notation will cause problems with the generated javascript for certain tags and themes. Use with caution, and always try to use camelcase action names (eg. createUser) or underscores (eg. my_action).

Action Methods

The default entry method to the handler class is defined by the Action interface.

...