-
Notifications
You must be signed in to change notification settings - Fork 0
/
api.php
193 lines (146 loc) · 9.31 KB
/
api.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
<?
include ('common/session.php');
?>
<?
$id = $_GET['id'];
$css = $_GET['css'];
$frame = $_GET['frame'];
$mode = $_GET['mode'];
/* Partie PHP de recuperation de donnees par SQL */
include 'common/config.inc.php';
$connect = mysql_connect($hote, $user, $password);
mysql_select_db($base, $connect);
$requete = mysql_query("SELECT * FROM ".$prefixe."fiche_soft WHERE id='$id'");
$logiciel = mysql_fetch_array($requete);
mysql_close($connect);
// ********************** Traitement, on choisit ce que l'on va faire ***********
if ($_GET['id'] == $logiciel['id'] AND $_GET['id'] != NULL) {
include 'common/fonctions.php';
if ($mode == 'bouton') {
if ($frame == 'oui') { echo '<html><body style="margin: 0;">'; }
if ($css != 'no') { echo '<div id="LeOSConteneur" style="font-family: Ubuntu; width: 200px; height: 32px;">'; }
?>
<img id="ImageBoutonLeOS" <? if ($css != 'no') { ?>style="float: right;"<? } ?> src="http://<? echo $_SERVER['HTTP_HOST']; ?>/<? echo icon($logiciel['id'], 'faenza'); ?>" />
<div id="ConteneurBoutonLeOS" <? if ($css != 'no') { ?>style="width: 194px; line-height: 20px; padding: 4px 0 4px 0;"<? } ?>>
<div id="StyleBoutonLeOS" <? if ($css != 'no') { ?>style="background: url('http://<? echo $_SERVER['HTTP_HOST']; ?>/common/images/BackButtonOrange.png') repeat-x scroll center top white; border: 2px solid #E86205; -moz-border-radius: 8px;"<? } ?>>
<a id="LienBoutonLeOS" <? if ($css != 'no') { ?>style="text-decoration: none;"<? } ?> href="http://<? echo $_SERVER['HTTP_HOST']; ?>/fiche.php?id=<? echo $logiciel['id']; ?>">
<p id="TexteBoutonLeOS" <? if ($css != 'no') { ?>style="color: white; padding: 0 0 0 5px; margin: 0; height: 20px; overflow: hidden;"<? } ?>><b><? echo $logiciel['nom']; ?></b> - <? echo $logiciel['version']; ?></p>
</a>
</div>
</div>
<?
if ($css != 'no') { echo '</div>'; }
if ($frame == 'oui') { echo '</body></html>'; }
}
else if ($mode == 'inline') {
if ($css != 'no') { echo '<span id="LeOSConteneur" style="font-family: Ubuntu; width: 200px; height: 32px; margin: 0 15px 0 -36px;">'; }
?>
<img id="ImageBoutonLeOS" <? if ($css != 'no') { ?>style="position: relative; left: 150px; top: 10px;"<? } ?> src="http://<? echo $_SERVER['HTTP_HOST']; ?>/<? echo icon($logiciel['id'], 'faenza'); ?>" />
<span id="ConteneurBoutonLeOS" <? if ($css != 'no') { ?>style="width: 189px; line-height: 20px; padding: 4px 0 4px 0;"<? } ?>>
<span id="StyleBoutonLeOS" <? if ($css != 'no') { ?>style="background: url('http://<? echo $_SERVER['HTTP_HOST']; ?>/common/images/BackButtonVert.png') repeat-x scroll center top white; border: 2px solid #36AF38; -moz-border-radius: 8px;"<? } ?>>
<a id="LienBoutonLeOS" <? if ($css != 'no') { ?>style="text-decoration: none;"<? } ?> href="http://<? echo $_SERVER['HTTP_HOST']; ?>/fiche.php?id=<? echo $logiciel['id']; ?>">
<span id="TexteBoutonLeOS" <? if ($css != 'no') { ?>style="color: white; padding: 0 18px 0 5px; margin: 0; height: 20px; overflow: hidden;"<? } ?>><b><? echo $logiciel['nom']; ?></b> - <? echo $logiciel['version']; ?></span>
</a>
</span>
</span>
<?
if ($css != 'no') { echo '</span>'; }
if ($frame == 'oui') { echo '</body></html>'; }
}
else {
?>
<h3 style="font-size: 16px;">Mode inconnu</h3>
<?
}
}
else {
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Faire un lien - <? echo $titrepage; ?></title>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-15" />
<link href="common/common.css" rel="stylesheet" type="text/css" media="screen" />
<!--[if IE 6]><link rel="stylesheet" type="text/css" href="common/common-ie6.css" /><![endif]-->
<link href="common/aide.css" rel="stylesheet" type="text/css" media="screen" />
<link rel="icon" type="image/png" href="icons-pack/<? echo $iconspack; ?>/LeOS.png" />
<script language="JavaScript" type="text/javascript">
window.onload = function() {
initHeader();
}
</script>
</head>
<body>
<? include 'common/header.php'; ?>
<? $page='api'; $admin="non"; include 'common/gauche.php'; ?>
<div id="corps">
<? include 'common/nav.php'; ?>
<div id="content">
<? // ************************************************************************************************************* ?>
<img style="float: right;" src="icones/64/help.png" />
<h1 class='nom'>Faire un lien...</h3>
<p class="short_desc">Des petits gadgets à intégrer à votre site...</p>
<h3 class="titre">Faire un lien texte vers le site...</h3><hr />
<p><u>Exemple :</u></p>
<p><a href="http://<? echo $_SERVER['HTTP_HOST']; ?>/" title="L'encyclopédie des logiciels libres"><? echo $titrepage; ?></a></p><br />
<p><u>Code HTML à insérer :</u></p>
<p><textarea style="width: 100%;"><a href="http://<? echo $_SERVER['HTTP_HOST']; ?>/" title="L'encyclopédie des logiciels libres"><? echo $titrepage; ?></a></textarea></p>
Ce code doit être inséré dans une page HTML. Vous pouvez donc l'intégrer à votre site web si vous en êtes le webmaster, à votre CMS (WordPress, phpBB...) si vous en êtes l'administrateur...</p>
<br /><br />
<? /* <h3 class="titre">Utiliser un bouton HTML/CSS vers une application de l'encyclopédie</h3><hr />
<p><u>Exemple : </u></p>
<iframe src="http://<? echo $_SERVER['HTTP_HOST']; ?>/api.php?id=firefox&mode=bouton&frame=oui" width=200 height=32 scrolling=no frameborder=0></iframe>
<p><u>Code HTML à insérer :</u></p>
<p><textarea style="width: 100%;"><iframe src="http://<? echo $_SERVER['HTTP_HOST']; ?>/api.php?id=firefox&mode=bouton&frame=oui" width=200 height=32 scrolling=no frameborder=0></iframe></textarea></p>
<p>Ici vous avez plein d'option... Voici une liste de ce que vous pouvez faire :</p>
<ul>
<li>Choisir le logiciel à afficher. Il suffit de changer l'id du logiciel dans la ligne du lien.</li>
<li>Vous êtes obligé de laisser mode=bouton ou un message d'erreur apparaitra.</li>
<li>Le frame=oui permet d'inclure les balises html et body. Vous pouvez l'enlever si votre usage est différent.</li>
<li>Si l'id n'existe pas alors la présente page apparaitra.</li>
<li>Si vous voulez utiliser votre propre CSS, vous pouvez ajouter &css=no. Chaque balise porte un id différent qui vous permet de personaliser ce bouton.</li>
</ul> */ ?>
<h3 class="titre">Utiliser un bouton HTML/CSS vers une application de l'encyclopédie (via PHP)</h3><hr />
<p><u>Exemple : </u></p>
<?
$id = 'firefox';
$connect = mysql_connect($hote, $user, $password);
mysql_select_db($base, $connect);
$requete = mysql_query("SELECT * FROM ".$prefixe."fiche_soft WHERE id='$id'");
$logiciel = mysql_fetch_array($requete);
mysql_close($connect);
include 'common/fonctions.php';
if ($frame == 'oui') { echo '<html><body style="margin: 0;">'; }
if ($css != 'no') { echo '<div id="LeOSConteneur" style="font-family: Ubuntu; width: 200px; height: 32px;">'; }
?>
<img id="ImageBoutonLeOS" <? if ($css != 'no') { ?>style="float: right;"<? } ?> src="http://<? echo $_SERVER['HTTP_HOST']; ?>/<? echo icon($logiciel['id'], 'faenza'); ?>" />
<div id="ConteneurBoutonLeOS" <? if ($css != 'no') { ?>style="width: 194px; line-height: 20px; padding: 4px 0 4px 0;"<? } ?>>
<div id="StyleBoutonLeOS" <? if ($css != 'no') { ?>style="background: url('http://<? echo $_SERVER['HTTP_HOST']; ?>/common/images/BackButtonOrange.png') repeat-x scroll center top white; border: 2px solid #E86205; -moz-border-radius: 8px;"<? } ?>>
<a id="LienBoutonLeOS" <? if ($css != 'no') { ?>style="text-decoration: none;"<? } ?> href="http://<? echo $_SERVER['HTTP_HOST']; ?>/fiche.php?id=<? echo $logiciel['id']; ?>">
<p id="TexteBoutonLeOS" <? if ($css != 'no') { ?>style="color: white; padding: 0 0 0 5px; margin: 0; height: 20px; overflow: hidden;"<? } ?>><b><? echo $logiciel['nom']; ?></b> - <? echo $logiciel['version']; ?></p>
</a>
</div>
</div>
<?
if ($css != 'no') { echo '</div>'; }
if ($frame == 'oui') { echo '</body></html>'; } ?>
<p><u>Code PHP à insérer :</u></p>
<p><textarea style="width: 100%;"><? $boutonLeOS = file_get_contents('http://<? echo $_SERVER['HTTP_HOST']; ?>/api.php?id=firefox&mode=bouton');
echo $boutonLeOS; ?></textarea></p>
<p>Ici vous avez plein d'option... Voici une liste de ce que vous pouvez faire :</p>
<ul>
<li>Choisir le logiciel à afficher. Il suffit de changer l'id du logiciel dans la ligne du lien.</li>
<li>Vous êtes obligé de laisser mode=bouton ou un message d'erreur apparaitra.</li>
<li>Le frame=oui permet d'inclure les balises html et body. Vous pouvez l'ajouter si votre usage est différent (via un iframe).</li>
<li>Si l'id n'existe pas alors la présente page apparaitra.</li>
<li>Si vous voulez utiliser votre propre CSS, vous pouvez ajouter &css=no. Chaque balise porte un id différent qui vous permet de personaliser ce bouton.</li>
</ul>
<? // ************************************************************************************************************* ?>
</div>
</div>
<? include 'common/bottom.php'; ?>
</body>
</html>
<?
}
// ************************************************************************************************************* ?>