Example #1
0
			<table>
				<thead>
					<tr>
						<th class="id_field">id</th>
						<th>category</th>
					</tr>
				</thead>
				<tbody>

					<?php 
    foreach ($categories_records as $cr) {
        ?>
						<tr>
							<?php 
        $gui->showElement($cr, 'id');
        $gui->showElement($cr, 'category');
        $gui->deleteButton($cr);
        ?>
						</tr>
					<?php 
    }
    ?>

				</tbody>
			</table>

		<?php 
}
?>
Example #2
0
			<table>
				<thead>
					<tr>
						<th class="id_field">id</th>
						<th>exhibition_kind</th>
					</tr>
				</thead>
				<tbody>

					<?php 
    foreach ($exhibition_kinds_records as $ekr) {
        ?>
						<tr>
							<?php 
        $gui->showElement($ekr, 'id');
        $gui->showElement($ekr, 'exhibition_kind');
        ?>
						</tr>
					<?php 
    }
    ?>

				</tbody>
			</table>

		<?php 
}
?>

		<form action="" method="post">
Example #3
0
			<table>
				<thead>
					<tr>
						<th class="id_field">id</th>
						<th>technology</th>
					</tr>
				</thead>
				<tbody>

					<?php 
    foreach ($technologies_records as $tr) {
        ?>
						<tr>
							<?php 
        $gui->showElement($tr, 'id');
        $gui->showElement($tr, 'technology');
        $gui->deleteButton($tr);
        ?>
						</tr>
					<?php 
    }
    ?>

				</tbody>
			</table>

		<?php 
}
?>
Example #4
0
				<thead>
					<tr>
						<th class="id_field">id</th>
						<th>name</th>
						<th>website</th>
						<th>description</th>
					</tr>
				</thead>
				<tbody>

					<?php 
    foreach ($people_records as $pr) {
        ?>
						<tr>
							<?php 
        $gui->showElement($pr, 'id');
        $gui->showElement($pr, 'name');
        $gui->showElement($pr, 'website');
        $gui->showElement($pr, 'description');
        ?>
						</tr>
					<?php 
    }
    ?>

				</tbody>
			</table>

		<?php 
}
?>
Example #5
0
			<table>
				<thead>
					<tr>
						<th class="id_field">id</th>
						<th>media_type</th>
					</tr>
				</thead>
				<tbody>

					<?php 
    foreach ($media_types_records as $mtr) {
        ?>
						<tr>
							<?php 
        $gui->showElement($mtr, 'id');
        $gui->showElement($mtr, 'media_type');
        ?>
						</tr>
					<?php 
    }
    ?>

				</tbody>
			</table>

		<?php 
}
?>

		<form action="" method="post">
Example #6
0
				<thead>
					<tr>
						<th class="id_field">id</th>
						<th>event</th>
						<th>year</th>
						<th>place</th>
					</tr>
				</thead>
				<tbody>

					<?php 
    for ($i = 0; $i < count($events_records); $i++) {
        ?>
						<tr>
							<?php 
        $gui->showElement($events_records[$i], 'id');
        $gui->showElement($events_records[$i], 'event');
        $gui->showElement($events_records[$i], 'year');
        $gui->showMultipleElements($places_records, $events_records[$i], 'city');
        $gui->deleteButton($events_records[$i]);
        ?>
						</tr>
					<?php 
    }
    ?>

				</tbody>
			</table>

		<?php 
}
Example #7
0
			<table>
				<thead>
					<tr>
						<th class="id_field">id</th>
						<th>space</th>
						<th>place</th>
					</tr>
				</thead>
				<tbody>

					<?php 
    for ($i = 0; $i < count($spaces_records); $i++) {
        ?>
						<tr>
							<?php 
        $gui->showElement($spaces_records[$i], 'id');
        $gui->showElement($spaces_records[$i], 'space');
        $gui->showMultipleElements($places_records, $spaces_records[$i], 'city');
        ?>
						</tr>
					<?php 
    }
    ?>

				</tbody>
			</table>

		<?php 
}
?>
Example #8
0
			<table>
				<thead>
					<tr>
						<th class="id_field">id</th>
						<th>technique</th>
					</tr>
				</thead>
				<tbody>

					<?php 
    foreach ($techniques_records as $tr) {
        ?>
						<tr>
							<?php 
        $gui->showElement($tr, 'id');
        $gui->showElement($tr, 'technique');
        $gui->deleteButton($tr);
        ?>
						</tr>
					<?php 
    }
    ?>

				</tbody>
			</table>

		<?php 
}
?>
	</body>
Example #9
0
						<th class="id_field">id</th>
						<th>company</th>
						<th>website</th>
						<th>description</th>
						<th>start</th>
						<th>end</th>
					</tr>
				</thead>
				<tbody>

					<?php 
    foreach ($companies_records as $cor) {
        ?>
						<tr>
							<?php 
        $gui->showElement($cor, 'id');
        $gui->showElement($cor, 'company');
        $gui->showElement($cor, 'website');
        $gui->showElement($cor, 'description');
        $gui->showElement($cor, 'year_start');
        $gui->showElement($cor, 'year_end');
        ?>
						</tr>
					<?php 
    }
    ?>

				</tbody>
			</table>

		<?php 
Example #10
0
						<th>place</th>
						<th>project</th>
						<th>institution</th>
						<th>person_org</th>
						<th>person_curatorship</th>
						<th>person_participant</th>
					</tr>
				</thead>
				<tbody>

					<?php 
    for ($i = 0; $i < count($exhibitions_records); $i++) {
        ?>
						<tr>
							<?php 
        $gui->showElement($exhibitions_records[$i], 'id');
        $gui->showElement($exhibition_types_records[$i], 'exhibition_type');
        $gui->showElement($exhibition_kinds_records[$i], 'exhibition_kind');
        $gui->showElement($exhibitions_records[$i], 'exhibition');
        $gui->showElement($exhibitions_records[$i], 'year_start');
        $gui->showElement($exhibitions_records[$i], 'year_end');
        $gui->showMultipleElements($events_records, $exhibitions_records[$i], 'event');
        $gui->showMultipleElements($spaces_records, $exhibitions_records[$i], 'space');
        $gui->showMultipleElements($places_records, $exhibitions_records[$i], 'city');
        $gui->showMultipleElements($projects_records, $exhibitions_records[$i], 'project');
        $gui->showMultipleElements($institutions_records, $exhibitions_records[$i], 'institution');
        $gui->showMultipleElements($people_org_records, $exhibitions_records[$i], 'name');
        $gui->showMultipleElements($people_curatorship_records, $exhibitions_records[$i], 'name');
        $gui->showMultipleElements($people_participants_records, $exhibitions_records[$i], 'name');
        $gui->deleteButton($exhibitions_records[$i]);
        ?>
Example #11
0
			<table>
				<thead>
					<tr>
						<th class="id_field">id</th>
						<th>prize_type</th>
					</tr>
				</thead>
				<tbody>

					<?php 
    foreach ($prize_types_records as $ptr) {
        ?>
						<tr>
							<?php 
        $gui->showElement($ptr, 'id');
        $gui->showElement($ptr, 'prize_type');
        $gui->deleteButton($ptr);
        ?>
						</tr>
					<?php 
    }
    ?>

				</tbody>
			</table>

		<?php 
}
?>
	</body>
Example #12
0
			<table>
				<thead>
					<tr>
						<th class="id_field">id</th>
						<th>name</th>
						<th>given_name</th>
					</tr>
				</thead>
				<tbody>

					<?php 
    foreach ($project_types_records as $ptr) {
        ?>
						<tr>
							<?php 
        $gui->showElement($ptr, 'id');
        $gui->showElement($ptr, 'name');
        $gui->showElement($ptr, 'given_name');
        ?>
						</tr>
					<?php 
    }
    ?>

				</tbody>
			</table>

		<?php 
}
?>
Example #13
0
						<th class="id_field">id</th>
						<th>type</th>
						<th>collection</th>
						<th>year</th>
						<th>place</th>
						<th>institution</th>
					</tr>
				</thead>
				<tbody>

					<?php 
    for ($i = 0; $i < count($collections_records); $i++) {
        ?>
						<tr>
							<?php 
        $gui->showElement($collections_records[$i], 'id');
        $gui->showElement($collection_types_records[$i], 'collection_type');
        $gui->showElement($collections_records[$i], 'collection');
        $gui->showElement($collections_records[$i], 'year');
        $gui->showMultipleElements($places_records, $collections_records[$i], 'city');
        $gui->showMultipleElements($institutions_records, $collections_records[$i], 'institution');
        ?>
						</tr>
					<?php 
    }
    ?>

				</tbody>
			</table>

		<?php 
Example #14
0
			<table>
				<thead>
					<tr>
						<th class="id_field">id</th>
						<th>institution</th>
						<th>place</th>
					</tr>
				</thead>
				<tbody>

					<?php 
    for ($i = 0; $i < count($institutions_records); $i++) {
        ?>
						<tr>
							<?php 
        $gui->showElement($institutions_records[$i], 'id');
        $gui->showElement($institutions_records[$i], 'institution');
        $gui->showMultipleElements($places_records, $institutions_records[$i], 'city');
        $gui->deleteButton($institutions_records[$i]);
        ?>
						</tr>
					<?php 
    }
    ?>

				</tbody>
			</table>

		<?php 
}
?>
Example #15
0
						<th>function</th>
						<th>author</th>
						<th>collaborator</th>
						<th>exhibition</th>
						<th>prize</th>
						<th>collection</th>
					</tr>
				</thead>
				<tbody>

					<?php 
    for ($i = 0; $i < count($projects_records); $i++) {
        ?>
						<tr>
							<?php 
        $gui->showElement($projects_records[$i], 'id');
        $gui->showElement($project_types_records[$i], 'given_name');
        $gui->showElement($projects_records[$i], 'project');
        $gui->showElement($projects_records[$i], 'short_description');
        $gui->showElement($projects_records[$i], 'long_description');
        $gui->showElement($projects_records[$i], 'year_start');
        $gui->showElement($projects_records[$i], 'year_end');
        $gui->showElement($projects_records[$i], 'priority');
        $gui->showElement($projects_records[$i], 'active');
        $gui->showMultipleElements($categories_records, $projects_records[$i], 'category');
        $gui->showMultipleElements($companies_records, $projects_records[$i], 'company');
        $gui->showMultipleElements($techniques_records, $projects_records[$i], 'technique');
        $gui->showMultipleElements($technologies_records, $projects_records[$i], 'technology');
        $gui->showMultipleElements($places_records, $projects_records[$i], 'city');
        $gui->showMultipleElements($media_records, $projects_records[$i], 'media_title');
        $gui->showMultipleElements($works_records, $projects_records[$i], 'work_title');
Example #16
0
			<table>
				<thead>
					<tr>
						<th class="id_field">id</th>
						<th>function</th>
					</tr>
				</thead>
				<tbody>

					<?php 
    foreach ($functions_records as $fr) {
        ?>
						<tr>
							<?php 
        $gui->showElement($fr, 'id');
        $gui->showElement($fr, 'function');
        ?>
						</tr>
					<?php 
    }
    ?>

				</tbody>
			</table>

		<?php 
}
?>

		<form action="" method="post">
Example #17
0
			<table>
				<thead>
					<tr>
						<th class="id_field">id</th>
						<th>collection_type</th>
					</tr>
				</thead>
				<tbody>

					<?php 
    foreach ($collection_types_records as $ctr) {
        ?>
						<tr>
							<?php 
        $gui->showElement($ctr, 'id');
        $gui->showElement($ctr, 'collection_type');
        $gui->deleteButton($ctr);
        ?>
						</tr>
					<?php 
    }
    ?>

				</tbody>
			</table>

		<?php 
}
?>
Example #18
0
				<thead>
					<tr>
						<th class="id_field">id</th>
						<th>city</th>
						<th>state</th>
						<th>country</th>
					</tr>
				</thead>
				<tbody>

					<?php 
    foreach ($places_records as $pr) {
        ?>
						<tr>
							<?php 
        $gui->showElement($pr, 'id');
        $gui->showElement($pr, 'city');
        $gui->showElement($pr, 'state');
        $gui->showElement($pr, 'country');
        $gui->deleteButton($pr);
        ?>
						</tr>
					<?php 
    }
    ?>

				</tbody>
			</table>

		<?php 
}
Example #19
0
						<th>work_title</th>
						<th>work_description</th>
						<th>media</th>
						<th>category</th>
						<th>technique</th>
						<th>technology</th>
					</tr>
				</thead>
				<tbody>

					<?php 
    for ($i = 0; $i < count($works_records); $i++) {
        ?>
						<tr>
							<?php 
        $gui->showElement($works_records[$i], 'id');
        $gui->showElement($works_records[$i], 'work_title');
        $gui->showElement($works_records[$i], 'work_description');
        //style max-width:300px
        $gui->showMultipleElements($media_records, $works_records[$i], 'media_title');
        $gui->showMultipleElements($categories_records, $works_records[$i], 'category');
        $gui->showMultipleElements($techniques_records, $works_records[$i], 'technique');
        $gui->showMultipleElements($technologies_records, $works_records[$i], 'technology');
        ?>
						</tr>
					<?php 
    }
    ?>

				</tbody>
			</table>
Example #20
0
			<table>
				<thead>
					<tr>
						<th class="id_field">id</th>
						<th>exhibition_type</th>
					</tr>
				</thead>
				<tbody>

					<?php 
    foreach ($exhibition_types_records as $etr) {
        ?>
						<tr>
							<?php 
        $gui->showElement($etr, 'id');
        $gui->showElement($etr, 'exhibition_type');
        $gui->deleteButton($etr);
        ?>
						</tr>
					<?php 
    }
    ?>

				</tbody>
			</table>

		<?php 
}
?>
Example #21
0
						<th>type</th>
						<th>name</th>
						<th>their_category</th>
						<th>year</th>
						<th>place</th>
						<th>institution</th>
					</tr>
				</thead>
				<tbody>

					<?php 
    for ($i = 0; $i < count($prizes_records); $i++) {
        ?>
						<tr>
							<?php 
        $gui->showElement($prizes_records[$i], 'id');
        $gui->showElement($prize_types_records[$i], 'prize_type');
        $gui->showElement($prizes_records[$i], 'name');
        $gui->showElement($prizes_records[$i], 'their_category');
        $gui->showElement($prizes_records[$i], 'year');
        $gui->showMultipleElements($places_records, $prizes_records[$i], 'city');
        $gui->showMultipleElements($institutions_records, $prizes_records[$i], 'institution');
        $gui->deleteButton($prizes_records[$i]);
        ?>
						</tr>
					<?php 
    }
    ?>

				</tbody>
			</table>