You are here

simple_styleguide.links.task.yml in Simple Style Guide 8

File

simple_styleguide.links.task.yml
View source
  1. # yaml file to define one or more local task(s).
  2. #
  3. # Definitions can contain any of the following:
  4. # title: (required) The untranslated title of the menu link.
  5. # description: The untranslated description of the link.
  6. # route_name: (optional) The route name to be used to build the path. Either a
  7. # route_name or a link_path must be provided.
  8. # base_route: Used to group together related tabs.
  9. # parent_id: Use the parent_id to relate a tab to a parent tab for multiple
  10. # levels of tabs.
  11. # route_parameters: (optional) The route parameters to build the path. An array.
  12. # link_path: (optional) If you have an external link use link_path instead of
  13. # providing a route_name.
  14. # weight: (optional) An integer that determines the relative position of items
  15. # in the menu; higher-weighted items sink. Defaults to 0.
  16. # Menu items with the same weight are ordered alphabetically.
  17. # options: (optional) An array of options to be passed to l() when generating
  18. # a link from this menu item.
  19. simple_styleguide.settings:
  20. route_name: simple_styleguide.styleguide_settings
  21. title: Settings
  22. base_route: simple_styleguide
  23. weight: 5
  24. simple_styleguide.patterns:
  25. route_name: entity.styleguide_pattern.collection
  26. title: Patterns
  27. base_route: simple_styleguide
  28. weight: 10
  29. simple_styleguide.styleguide:
  30. route_name: simple_styleguide.controller
  31. title: View Styleguide
  32. base_route: simple_styleguide
  33. weight: 15