Mein Tutorial bzw. MiniProjekt über ColdFusion-Snippets habe ich nun auch als (per SVN) in die Quickies gelegt. So kann jeder diese Snippets in sein Eclipse als (ReadOnly-)Projekt einbinden.
foreach
$theFiles = [‚cs‘,’js‘,’php‘]; foreach ($theFiles as $ext) $theFile = __DIR__ . ‚/domains/‘ .CLIENT_DOMAIN .‘.‘ .$ext; if (file_exists($theFile)) require_once $theFile;