/branches/v1.0-pithivier/tools/pages/desc.xml |
---|
New file |
0,0 → 1,6 |
<?xml version="1.0" encoding="ISO-8859-1"?> |
<plugin name="nbrepages" version="0.1" active="1"> |
<author>Jean-Pascal MILCENT</author> |
<label>Nombre de pages</label> |
<desc>Actions affichant le nombre de page du Wikini.</desc> |
</plugin> |
/branches/v1.0-pithivier/tools/pages/index.php |
---|
New file |
0,0 → 1,10 |
<?php |
// Administration |
// Vérification de sécurité |
if (!defined("TOOLS_MANAGER")) |
{ |
die ("accès direct interdit"); |
} |
?> |
/branches/v1.0-pithivier/tools/pages/actions/nbrepages.php |
---|
New file |
0,0 → 1,6 |
<?php |
$res = $this->LoadSingle("SELECT count(distinct tag) as nbrPg FROM ".$this->config["table_prefix"]."pages ;"); |
if ($res) { |
echo $res["nbrPg"]; |
} |
?> |