calendar.js 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. 'use strict';
  2. angular.module('fehlerberichtApp')
  3. .controller('CalendarCtrl', function ($scope, $http) {
  4. var webservice = 'http://rbs06/fehlerbericht/db.php?';
  5. $().ready(function() {
  6. // page is now ready, initialize the calendar...
  7. $('#calendar').fullCalendar({
  8. 'weekNumbers': true,
  9. 'header': {
  10. left: 'title',
  11. center: '',
  12. right: 'month basicWeek agendaDay today prev,next'
  13. },
  14. 'events': {
  15. 'url': webservice + 'a=liste&events=1'
  16. }
  17. /*
  18. events: [
  19. {
  20. title: 'Reisacher (1)',
  21. start: '2014-11-01T06:03:00',
  22. color: 'yellow',
  23. textColor: 'black'
  24. },
  25. {
  26. title: 'Arndt (3)',
  27. start: '2014-11-07T09:10:00',
  28. color: 'red'
  29. },
  30. {
  31. title: 'Nauheim (2)',
  32. start: '2014-11-11T07:00:00',
  33. color: 'orange'
  34. },
  35. {
  36. title: 'Ulmen (2)',
  37. start: '2014-11-12T10:30:00',
  38. color: 'orange'
  39. },
  40. {
  41. title: 'Auto Nova (5)',
  42. start: '2014-11-12T12:00:00',
  43. color: 'darkred'
  44. },
  45. {
  46. title: 'Bunk (1)',
  47. start: '2014-11-12T14:30:00',
  48. color: 'yellow',
  49. textColor: 'black'
  50. },
  51. {
  52. title: 'Lehr (3)',
  53. start: '2014-11-12T17:30:00',
  54. color: 'red'
  55. },
  56. {
  57. title: 'Boettche (1)',
  58. start: '2014-11-12T20:00:00',
  59. color: 'yellow',
  60. textColor: 'black'
  61. },
  62. {
  63. title: 'Voss und Voss (2)',
  64. start: '2014-11-13T07:00:00',
  65. color: 'orange'
  66. }
  67. ] */
  68. });
  69. });
  70. });