setTarget($_GET['target']); } if (isset($_GET['months_to_consider'])) { // for Tipeee-like themes $myCrowdfunding->setMonthsToConsider($_GET['months_to_consider']); } if (isset($_GET['display_button'])) { $myCrowdfunding->setMustDisplayButton($_GET['display_button']); } 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['display_graph'])) { $myCrowdfunding->setMustDisplayGraph($_GET['display_graph']); if ($myCrowdfunding->getMustDisplayGraph()) { require_once('Chart.class.php'); $chart = new Chart($myCrowdfunding); } } if (!isset($_GET['theme']) or !file_exists($tplPath = THEMES_PATH . '/' . $_GET['theme'] . '.html.php')) { $theme = DEFAULT_THEME; } else { $theme = $_GET['theme']; } $tplPath = THEMES_PATH . '/' . $theme . '.html.php'; $confPath = THEMES_PATH . '/' . $theme . '.conf.php'; if (file_exists($confPath)) { require_once($confPath); } ?> <?php echo $myCrowdfunding->getTitle(); ?> '. getComputedStyles() .' '; } ?>