Support & Downloads

Quisque actraqum nunc no dolor sit ametaugue dolor. Lorem ipsum dolor sit amet, consyect etur adipiscing elit.

s f

Contact Info
198 West 21th Street, Suite 721
New York, NY 10010
[email protected]
+88 (0) 101 0000 000
Follow Us

חלב ודבש בניית אתרי אינטרנט

דרופל – php code: blocks vasiblty for node types only

קוד ה PHP הבא יכול לאפשר או לא לאפשר הצגת בלוק מסויים לפי סוגי תוכן:

<?php
if ((arg(0) == 'node') && is_numeric(arg(1)) && (! arg(2))) {
$node = node_load(arg(1));
return ($node->type == 'product');
}
return FALSE;
?>

הקוד ה PHP בא מאפשר או לא מאפשר לכמה סוגי תוכן:

<?php
if ((arg(0) == 'node') && is_numeric(arg(1)) && (! arg(2))) {
$node = node_load(arg(1));
return ($node->type == 'product', 'gallery');
}
return FALSE;
?>

מוגש באדיבות חלב ודבש בניית אתרים בדרופל