Código completo en la vista del calendario usando "fullcalendar.io"


/ Published in: PHP
Save to your folder(s)

Parte del código de mi proyecto donde en la vista muestra un calendario usando la librería gratuita fullcalendar.io, que me da problemas y no recoge los eventos de mi calendario dentro del ZF2, pero si lo haría fuera de mi proyecto funciona sin ningún problema alguno.


Copy this code and paste it in your HTML
  1. <?php
  2. $title = 'Calendar';
  3. $this->headTitle($title);
  4. ?>
  5.  
  6. <?php echo $this->headLink()
  7. ->prependStylesheet($this->basePath() . '/library/fullcalendar-2.3.2/fullcalendar.min.css')
  8. ?>
  9.  
  10. <?php echo $this->headScript()
  11. ->prependFile($this->basePath() . '/library/fullcalendar-2.3.2/fullcalendar.min.js')
  12. ->prependFile($this->basePath() . '/library/fullcalendar-2.3.2/lib/jquery.min.js')
  13. ->prependFile($this->basePath() . '/library/fullcalendar-2.3.2/gcal.js')
  14. ->prependFile($this->basePath() . '/library/fullcalendar-2.3.2/lib/moment.min.js')
  15. ?>
  16.  
  17. <?php $this->headScript()->captureStart(); ?>
  18. $(document).ready(function() {
  19. $('#calendar').fullCalendar({
  20. googleCalendarApiKey: 'google-api-key',
  21. events: 'email-calendar@google',
  22. eventClick: function(event) {
  23. // opens events in a popup window
  24. window.open(event.url, 'gcalevent', 'width=700,height=600');
  25. return false;
  26. },
  27. });
  28. });
  29. <?php $this->headScript()->captureEnd(); ?>
  30.  
  31. <div id='calendar'></div>

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.