readme.txt 850 B

12345678910111213141516171819202122232425
  1. <h1>Chamilo Tour Plugin</h1>
  2. <p>Shows people how to use your Chamilo LMS</p>
  3. <h2>Set the blocks for the tour</h2>
  4. <p>Edit the <code>plugin/tour/config/tour.json</code> file adding the page classes and steps</p>
  5. <p>To set the steps in a page, add an object like this:</p>
  6. <pre>
  7. {
  8. "pageClass": "page unique class selector",
  9. "steps": [
  10. {
  11. "elementSelector": "element class or id",
  12. "message": "LanguageVariable"
  13. },
  14. {
  15. "elementSelector": "element class or id",
  16. "message": "LanguageVariable"
  17. },
  18. ]
  19. }
  20. </pre>
  21. Then set the language variables inside the <code>plugin/tour/lang/$language.php</code> file<br>
  22. <h2>Set a region to plugin</h2>
  23. <p>You must assign a Region to Tour plugin in the Configuration Settings</p>
  24. <p>Choose preferably <code>header_right</code></p>
  25. <br>