Aquest article tracta de Drupal. Si aquest nom no et diu res el post no et serà de gaire utilitat
<?php
$match = false;
$types = array ('nom_tipus_contingut' => 1);
if (arg (0) == 'node' && is_numeric(arg(1))) {
$nid = arg(1);
$node = node_load(array ('nid' => $nid));
type =$node->type;
if (isset($types[$types])) {
$match = TRUE;
}
}
Return $match;
?>