Advertisement
Guest User

Untitled

a guest
Jun 22nd, 2017
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. function MODULENAME_addto_schedule($nodes, $view) {
  2. foreach ($nodes as $key => $value) {
  3. // Is this a duplicate?
  4. if (isset($_SESSION['schedule']) && (in_array($value, $_SESSION['schedule']))) {
  5. // Item already exists in the array
  6.  
  7. } else {
  8. $_SESSION['schedule'][] = $value;
  9. }
  10. }
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement