Latest 100 public snipts »
allaterza's
snipts
showing 1-5 of 5 snipts
-
∞ image link con target _blank
<? $img_path = "images/arr_leggi_blu.gif"; $link_path = "node/47"; $theme_name = 'pmsth'; $options = array( 'attributes' => array( 'target' => '_blank', ), 'html' => true, ); $img = theme('image', drupal_get_path('theme', $theme_name). "/$img_path"); print l($img, $link_path, $options); ?>
-
∞ link con target _blank
<? $anchor = "anchor text"; $drupal_path = "node/47"; $options = array( 'attributes' => array( 'target' => '_blank', ) ); print l($anchor, $drupal_path, $options); ?>
-
∞ image link
<? $img_path = "images/arr_leggi_blu.gif"; $link_path = "node/47"; $theme_name = 'pmsth'; $img = theme('image', drupal_get_path('theme', $theme_name). "/$img_path"); print l($img, $link_path, array('html' => true)); ?>
-
∞ image
<? $path = "images/arr_leggi_blu.gif"; $theme_name = 'pmsth'; print theme('image', drupal_get_path('theme', $theme_name). "/$path"); ?>
-
∞ link
<? $anchor = "anchor text"; $drupal_path = "node/47"; print l($anchor, $drupal_path); ?>


