Ejemplo n.º 1
0
            echo "(no imports found)";
        }
        echo "</div>";
        break;
    case 'getLoginDetails':
        if (isset($_GET['publisherPlatformID']) && $_GET['publisherPlatformID'] != '') {
            $publisherPlatform = new PublisherPlatform(new NamedArguments(array('primaryKey' => $_GET['publisherPlatformID'])));
            ?>

			<h3>Publisher Logins</h3>

			<div id="div_logins">

			<?php 
            $externalLoginArray = array();
            $externalLoginArray = $publisherPlatform->getExternalLogins();
            $externalLogin = new ExternalLogin();
            if (count($externalLoginArray) > 0) {
                ?>

			<table class='verticalFormTable'>
			<tr>
			<th>Interface Login</th>
			<th>Password</th>
			<th>URL</th>
			<th>Login Notes</th>
			<th>&nbsp;</th>
			</tr>

			<?php 
                foreach ($externalLoginArray as $externalLogin) {