setTarget($_GET['target']); } if (isset($_GET['title'])) { $myCrowdfunding->setTitle($_GET['title']); } if (isset($_GET['hide_title'])) { $myCrowdfunding->setMustHideTitle($_GET['hide_title']); } if (isset($_GET['display_pubkey'])) { $myCrowdfunding->setMustDisplayPubkey($_GET['display_pubkey']); } if (isset($_GET['display_qrcode'])) { $myCrowdfunding->setMustDisplayQRCode(true); } /* if (isset($_GET['node'])) { $myCrowdfunding->addNodes(explode(' ', $_GET['node'])); } */ if (isset($_GET['logo'])) { $myCrowdfunding->setLogo($_GET['logo']); } $theme = isset($_GET['theme']) ? $_GET['theme'] : DEFAULT_THEME; if (!file_exists($tplPath = THEMES_PATH . '/' . $theme . '.svg.php')) { $tplPath = THEMES_PATH . '/' . DEFAULT_THEME . '.svg.php'; } if (file_exists($confPath = THEMES_PATH . '/' . $theme . '.conf.php')) { require_once($confPath); } ob_clean();// Without this line, encoding problems (UTF-8 php files instead of ANSI) can cause image to not generate) header('Content-type: image/svg+xml'); include($tplPath);