Σελίδα χωρίς περιεχόμενο
Δυστυχώς, στον ζητούμενο σύνδεσμο δεν βρέθηκε περιεχόμενο - κατά πάσα πιθανότητα έχετε πληκτρολογήσει κάτι λάθος στην γραμμή διευθύνσεων ή σας προτάθηκε από τη μηχανή αναζήτησης κάποια σελίδα που έχει πλέον καταργηθεί.
Κάντε χρήση της φόρμας αναζήτησης πιο κάτω, ή γυρίστε πίσω στην κεντρική σελίδα.
<?php
// check that the search module exists and the user has permission to hit the form
if (module_exists('search') && user_access('search content')) {
// cool! - customerror doesn't trash the page request and the full path is available
$path = $_REQUEST['destination'];
// bin anything that's not alphanumeric and replace with spaces
$keys = strtolower(preg_replace('/[^a-zA-Z0-9-]+/', ' ', $path));
// retrieve the search form using the data we've pull from the request
// note that we can override the label for the search terms field here too
print drupal_get_form('search_form', NULL, $keys, 'node', 'Όροι προς αναζήτηση');
}
?>