15 lines
1.0 KiB
PHP
Executable File
15 lines
1.0 KiB
PHP
Executable File
<?php require "config.inc.php"; ?>
|
|
<?xml version="1.0" encoding="UTF-8" ?>
|
|
<OpenSearchDescription xmlns="http://a9.com/-/spec/opensearch/1.1/">
|
|
<ShortName>Générer un code QR</ShortName>
|
|
<Description>Générez des codes QR depuis votre barre de recherche ou d'adresse</Description>
|
|
<?php
|
|
foreach($themeDimensionsIcons as $dimIcon) {
|
|
echo ' <Image height="' . $dimIcon . '" width="' . $dimIcon . '" type="image/png">' . $instPath . 'themes/' . $theme . '/icons/' . $dimIcon . '.png</Image>' . "\n";
|
|
} ?>
|
|
<Language>fr</Language>
|
|
<InputEncoding>UTF-8</InputEncoding>
|
|
<Url type="text/html" template="<?php echo $instPath; ?>?txt={searchTerms}&redondancy=<?php if (isset($_GET['redondancy'])) { echo $_GET['redondancy']; } ?>&margin=<?= $_GET['margin'] ?>&size=<?= $_GET['size'] ?>&bgColor=<?= urlencode($_GET['bgColor']) ?>&mainColor=<?= urlencode($_GET['mainColor']) ?>"/>
|
|
<Url type="application/opensearchdescription+xml" rel="self" template="<?php echo $instPath; ?>opensearch.php" />
|
|
</OpenSearchDescription>
|