示例#1
0
                }
            }
        }
        echo "<br /><br /><br />";
        //Notes
        if (isset($_GET['publisherPlatformID']) && $_GET['publisherPlatformID'] != '') {
            $publisherPlatform = new PublisherPlatform(new NamedArguments(array('primaryKey' => $_GET['publisherPlatformID'])));
            ?>

			<h3>Publisher Notes</h3>

			<div id="div_noteText">

			<?php 
            $publisherPlatformNoteArray = array();
            $publisherPlatformNoteArray = $publisherPlatform->getPublisherPlatformNotes();
            $publisherPlatformNote = new PublisherPlatformNote();
            if (count($publisherPlatformNoteArray) > 0) {
                ?>

			<table class='verticalFormTable'>
			<tr>
			<th>Start Year</th>
			<th>End Year</th>
			<th>Notes</th>
			<th>&nbsp;</th>
			</tr>

			<?php 
                foreach ($publisherPlatformNoteArray as $publisherPlatformNote) {
                    if ($publisherPlatformNote->endYear == '0' || $publisherPlatformNote->endYear == '') {