Skip to content

Instantly share code, notes, and snippets.

@renorram
Created June 24, 2016 16:13
Show Gist options
  • Save renorram/e1fecaab8e2d4b27317e5bb8ee67d1af to your computer and use it in GitHub Desktop.
Save renorram/e1fecaab8e2d4b27317e5bb8ee67d1af to your computer and use it in GitHub Desktop.
<?php
if (!is_null(arg(1)) {
// Get the nid
$node_date = $data->field_data['und'][0]['value'];
$date = date('Y' , strtotime($node_date));
if($date != arg(1)){
return TRUE;
}else{
return FALSE;
}
}else{
return FALSE;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment