Advertisement
Guest User

Untitled

a guest
Jul 27th, 2017
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.04 KB | None | 0 0
  1. lib.category_nav = USER
  2. lib.category_nav {
  3. userFunc = TYPO3CMSExtbaseCoreBootstrap->run
  4. extensionName = News
  5. pluginName = Pi1
  6. vendorName = GeorgRinger
  7. switchableControllerActions {
  8. Category {
  9. 1 = list
  10. }
  11. }
  12. settings < plugin.tx_news.settings
  13. settings {
  14. startingpoint = 123
  15. categories = 456
  16. categoryConjunction = or
  17. includeSubCategories = 1
  18. }
  19. view =< plugin.tx_news.view
  20. }
  21.  
  22. lib.category_nav2 = CONTENT
  23. lib.category_nav2 {
  24. wrap = <p class="categories">|</p>
  25. table = sys_category
  26. select {
  27. orderBy = sys_category.title
  28. }
  29. renderObj = FLUIDTEMPLATE
  30. renderObj {
  31. file = {$customContentTemplatePath}/Category/List.html
  32. }
  33. }
  34.  
  35. lib.category_list = CONTENT
  36. lib.category_list {
  37. table = sys_category
  38. select {
  39. orderBy = sys_category.title
  40. pidInList = {$pidMyCategories}
  41. }
  42. renderObj = FLUIDTEMPLATE
  43. renderObj {
  44. file = {$customContentTemplatePath}/Category/MyItem.html
  45. }
  46. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement