Drupal7: show 404 page after checks in preprocessing

486 Views Asked by At

I have some checks in my preprocessing files for nodes. If one of them is true I would like to show my defined 404 page. How is this possible with a php call?

2

There are 2 best solutions below

0
On BEST ANSWER

Use this code:

if([YOUR_CHECKS]){
    drupal_not_found();
}
0
On

You should use the drupal_not_foun() function