array_loop

Definition

array_loop($bname, $var, &$values) { if (gettype($values)=="array")
themes/engines/xtemplate/xtemplate.inc, line 227

Code

<?php
function array_loop($bname, $var, &$values)
{
  if (gettype($values)=="array")
  {
    foreach($values as $v)
    {
      $this->assign($var, $v);
      $this->parse($bname);
    }
  }
}
?>
 
 

All source code and documentation on this site is released under the terms of the GNU General Public License, version 2 and later. Drupal is a registered trademark of Dries Buytaert.