30 lines
840 B
PHP
30 lines
840 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 Bruckmühle";
|
|
$image = "bruckmlogowh003.jpg";
|
|
$ids = array(596, 973, 1268, 1145, 1175, 674, 660, 1143, 1177, 1167, 1169, 662, 965, 610, 1141, 993, 963, 995, 664, 614, 616, 618, 1173, 1171, 666, 44, 668, 670);
|
|
|
|
$out = "<h1>" . $title . "</h1>";
|
|
$out .= "<img src=\"images/" . $image . "\" alt=\"" . $title . "\" /><h1> </h1>";
|
|
$j = 0;
|
|
foreach ($ids as $id) {
|
|
$person = FlexiconFactory::instanceById($id, $page);
|
|
$person->load();
|
|
$out .= $person->publishForPersonList($j%2);
|
|
$j++;
|
|
}
|
|
return $out;
|
|
}
|
|
|
|
?>
|