Subversion Repositories Applications.papyrus

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
433 ddelon 1
<?php
2
 
3
	if ($pages = $this->LoadPagesLinkingTo($this->getPageTag()))
4
	{
5
		print("Pages ayant un lien vers la page courante : <br />\n");
6
		foreach ($pages as $page)
7
		{
8
			print($this->ComposeLinkToPage($page["tag"])."<br />\n");
9
		}
10
	}
11
	else
12
	{
13
		print("<i>Aucune page n'a de lien vers ".$this->ComposeLinkToPage($this->getPageTag()).".</i>");
14
	}
15
?>