Channels.php 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. <?PHP
  2. /*
  3. OmnomIRC COPYRIGHT 2010,2011 Netham45
  4. This file is part of OmnomIRC.
  5. OmnomIRC is free software: you can redistribute it and/or modify
  6. it under the terms of the GNU General Public License as published by
  7. the Free Software Foundation, either version 3 of the License, or
  8. (at your option) any later version.
  9. OmnomIRC is distributed in the hope that it will be useful,
  10. but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. GNU General Public License for more details.
  13. You should have received a copy of the GNU General Public License
  14. along with OmnomIRC. If not, see <http://www.gnu.org/licenses/>.
  15. */
  16. include("/path/to/omnomirc_www/folder/Source/sign.php");
  17. //Set the channels here.
  18. //$channels[]=Array("#channel",AlwaysShow);
  19. $channels=Array();
  20. $channels[]=Array("#chan1",true);//Default chan, 'cause it's the first in the array.
  21. $channels[]=Array("#chan2",true);
  22. $exChans=Array();
  23. $exChans[]=Array("#chan",false);
  24. ?>
  25. <?PHP
  26. if (!isset($IRCBOT))
  27. {
  28. //Output for Javascript.
  29. header('Content-type: text/javascript');
  30. $chanStr = "";
  31. foreach ($channels as $chan)
  32. if ($chan[1])$chanStr = $chanStr . '"'.base64_url_encode($chan[0]).'",';
  33. $chanStr = substr($chanStr,0,-1);
  34. echo "var channels=[";
  35. echo $chanStr;
  36. echo "];";
  37. $exChanStr = "";
  38. foreach ($channels as $chan)
  39. if (!$chan[1])$exChanStr = $exChanStr . '"'.base64_url_encode($chan[0]).'",';
  40. $exChanStr = substr($exChanStr,0,-1);
  41. echo "var exChannels=[";
  42. echo $exChanStr;
  43. echo "];";
  44. }
  45. else
  46. {
  47. //Output for PHP
  48. $chanStr = "";
  49. foreach ($exChans as $chan)
  50. $channels[] = $chan;
  51. foreach ($channels as $chan)
  52. $chanStr = $chanStr .$chan[0].',';
  53. $chanStr = substr($chanStr,0,-1);
  54. }
  55. ?>