Files
bm/public_html/public/php/zeitorte_icon.php
2025-09-24 13:26:28 +02:00

31 lines
820 B
PHP

<?php
/** artist list for a specific gallery
* @version 1.0.0
* @date 2009-07-27
* @author Martin Lenzelbauer
*/
/** predefined entry point for the PHP script
* @return page content
*/
//-------------------------------
function doPhpScript($page){
//-------------------------------
$title = "Galerien | Sammlung Icon";
$image = "iconlogo4c001.jpg";
$url = "http://www.icon-wt.co.at/";
$ids = array(1268, 1145, 660, 1167, 965, 610, 993, 963, 618, 1171);
$out = "<h1>" . $title . "</h1>";
$out .= "<a href=\"" . $url . "\" target=\"_blank\"><img src=\"images/" . $image . "\" alt=\"" . $title . "\" /></a><h1> </h1>";
$j = 0;
foreach ($ids as $id) {
$person = FlexiconFactory::instanceById($id, $page);
$person->load();
$out .= $person->publishForPersonList($j%2);
$j++;
}
return $out;
}
?>