File "plugins.html"

Full path: /home/argothem/www/organecyberpresse/plugins-dist/svp/prive/objets/liste/plugins.html
File size: 2.08 KB
MIME-type: text/html
Charset: utf-8

[(#REM) <!-- Liste des plugins :
	- soit integrale de l'ensemble du site
	- soit reduite a un seul depot la page depot

	Les parametres d'environnement specifiques sont :
	- titre     : le titre de la liste
	- par       : le champ tri principal
	- pas       : le pas de pagination
	- id_depot  : filtrer la liste sur un depot
	- recherche : critere de recherche
	- where     : condition supplementaire construire par l'appelant (non utilisee)
 -->]

[(#SET{defaut_tri, #ARRAY{
	prefixe, 1,
	nom, 1,
	date_modif, -1,
	id_depot, 1}}
)]

<B_liste_plugins>
#ANCRE_PAGINATION
<div class="liste-objets plugins">
	<table class="spip liste">
	[<caption><strong class="caption">(#ENV*{titre, #GRAND_TOTAL|singulier_ou_pluriel{svp:info_1_plugin,svp:info_nb_plugins}})</strong></caption>]
		<thead>
			<tr class="first_row">
				<th class="prefixe">[(#TRI{prefixe, <:svp:label_prefixe:>, ajax})]</th>
				<th class="titre principale">[(#TRI{nom, <:info_titre|label_nettoyer:>, ajax})]</th>
				<th class="branche"><:svp:label_branches_spip:></th>
				<th class="date secondaire">[(#TRI{date_modif, <:svp:label_modifie_le:>, ajax})]</th>
				<th class="id">[(#TRI{id_plugin, <:info_numero_abbreviation:>, ajax})]</th>
			</tr>
		</thead>
		<tbody>
<BOUCLE_liste_plugins(PLUGINS) {id_plugin?}{where?}{id_depot?}{recherche?}{tri #ENV{par, prefixe}, #GET{defaut_tri}}{pagination #ENV{pas, 25}}{fusion prefixe}{doublons}>
			<tr class="[(#COMPTEUR_BOUCLE|alterner{row_odd,row_even})]">
				<td class="prefixe">
					<a[ href="(#ID_PLUGIN|generer_objet_url{plugin})"] title="<:svp:bulle_aller_plugin:>">
						[(#PREFIXE|strtolower)]
					</a>
				</td>
				<td class="titre principale">
					[(#NOM)]
				</td>
				<td class="branche">[(#BRANCHES_SPIP)]</td>
				<td class="date secondaire">[(#DATE_MODIF|affdate{d-m H:i})]</td>
				<td class="id secondaire">
					<a[ href="(#ID_PLUGIN|generer_objet_url{plugin})"] title="<:svp:bulle_aller_plugin:>">
					[(#ID_PLUGIN)]
					</a>
				</td>
			</tr>
</BOUCLE_liste_plugins>
		</tbody>
	</table>
	[<nav class='pagination'>(#PAGINATION{prive})</nav>]
</div>
</B_liste_plugins>
<//B_liste_plugins>