client.conf.php 1.2 KB

1234567891011121314151617181920212223242526272829
  1. <?php
  2. /* See license terms in /license.txt */
  3. /**
  4. * This script defines variables in use in the search plugin for this particular host in the client scripts
  5. * @package chamilo.search
  6. * @author Yannick Warnier <yannick.warnier@beeznest.com>
  7. */
  8. /**
  9. * Variables
  10. */
  11. //// Addressing variables
  12. // $search_url is the relative URL from the HTTP root of this portal, to the
  13. // 'searchit.php' script. Something like /plugin/search/client/searchit.php
  14. $search_url = '/plugin/search/client/searchit.php';
  15. // $server_url is the URL of the server containing the search engine XML
  16. // interface (the contents of the server/www directory in this plugin package)
  17. // and, more precisely, the absolute web path to the search.php script
  18. $server_url = 'http://your.domain.com/subdir/search/search.php';
  19. //// Language variables
  20. // The name to be displayed on the 'Search' button
  21. $lang_search_button = 'Search';
  22. // The text to be suffixed to the number of search results found
  23. $lang_search_found = 'r&eacute;sultats trouv&eacute;s.';
  24. // The text to be suffixed to the number of seconds the search took
  25. $lang_seconds = 'secondes';
  26. // the text to be shown if no results were found
  27. $lang_no_result_found = 'La recherche n\'a pas renvoy&eacute; de r&eacute;sultat.';
  28. ?>