Guest User

Untitled

a guest
May 22nd, 2018
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. events: [
  2. <?php foreach($events as $event):
  3. $start = explode(" ", $event['start']);
  4. if($start[1] == '00:00:00'){
  5. $start = $start[0];
  6.  
  7. }else{
  8.  
  9. $start = $event['start'];
  10. }
  11. ?>
  12. {
  13.  
  14. id: '<?php echo $event['id']; ?>',
  15. start: '<?php echo $start; ?>',
  16. title: '<?php echo $event['title']." La nueva Columna que debe aparecer"; ?>',
  17. color: '<?php echo $event['color']; ?>',
  18. },
  19. <?php endforeach; ?>
  20. ]
Add Comment
Please, Sign In to add comment