make_fileRecurse.tpl 202 B

12345678
  1. {foreach from=$dirWalk item=file key=key}
  2. {if is_array($file)}
  3. {include file="make_fileRecurse.tpl" dirWalk=$file}
  4. {elseif dontCompile($file->path, $projOutput)}
  5. {else}
  6. {$file->path} \
  7. {/if}
  8. {/foreach}