Routing

CloudOnex business suite plugin routing is little bit different. 

Look into this example-

Plugin Route Parameters

In route parameters you can't use query string, instead it will be divided by "/" You will have to access this using route method. Examples-

Example 1:

The URL- https://<Your URL>notes/app/view/1

Here- 

  • notes is route(0);
  • app is route(1);
  • view is route(2);
  • 1 is route(3);

Example 2:

The URL- https://<Your URL>notes/app/add

Here- 

  • notes is route(0);
  • app is route(1);
  • add is route(2);