-
Notifications
You must be signed in to change notification settings - Fork 307
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
144 additions
and
128 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,66 +1,57 @@ | ||
<?php require_once("magmi_plugin_info.php"); ?> | ||
<?php require_once("magmi_plugin_info.php"); ?> | ||
<div class="plugininfohover"> | ||
<div class="plugindata"> | ||
<ul> | ||
<?php | ||
|
||
$sp = isset($pinfo["sponsorinfo"]); | ||
foreach ($pinfo as $pik => $piv) { | ||
?> | ||
|
||
<li <?php if (isset($sp)) { | ||
?> class='sponsored' <?php | ||
} | ||
?>><?php | ||
if ($pik == "url") { | ||
?> | ||
<?php | ||
|
||
$sp = isset($pinfo["sponsorinfo"]); | ||
foreach ($pinfo as $pik => $piv) { | ||
?> | ||
|
||
<li <?php if (isset($sp)) { | ||
?> class='sponsored' <?php | ||
} ?>><?php | ||
if ($pik == "url") { | ||
?> | ||
<span><?php echo $pik?></span>:<span><a | ||
href="<?php echo $piv?>" target="_blank">Wiki entry</a></span> | ||
<?php | ||
|
||
} elseif ($pik == "sponsorinfo") { | ||
?> | ||
<?php | ||
} elseif ($pik == "sponsorinfo") { | ||
?> | ||
<span class="sponsor">Sponsored By</span>: <span> | ||
<?php if (isset($piv['url'])) { | ||
?> | ||
<?php if (isset($piv['url'])) { | ||
?> | ||
<a href="<?php echo $piv['url']?>" target="_blank"> | ||
<?php | ||
|
||
} | ||
echo $piv["name"]; | ||
if (isset($piv['url'])) { | ||
?> | ||
<?php | ||
} | ||
echo $piv["name"]; | ||
if (isset($piv['url'])) { | ||
?> | ||
</a> | ||
<?php | ||
} | ||
?> | ||
<?php | ||
} ?> | ||
</span> | ||
<?php | ||
|
||
} else { | ||
?> | ||
<?php | ||
} else { | ||
?> | ||
<span><?php echo $pik?></span>:<span><?php echo $piv ?></span> | ||
<?php | ||
|
||
} | ||
|
||
?> | ||
<?php | ||
} ?> | ||
</li> | ||
<?php | ||
|
||
} | ||
?> | ||
<?php | ||
} | ||
?> | ||
</ul> | ||
<div class="minidoc"> | ||
<?php echo $info?> | ||
<?php echo $info?> | ||
</div> | ||
</div> | ||
<?php if (!$plrunnable[0]) { | ||
?> | ||
<?php if (!$plrunnable[0]) { | ||
?> | ||
<div class="error"> | ||
<pre><?php echo $plrunnable[1]?></pre> | ||
</div> | ||
<?php | ||
} | ||
?> | ||
<?php | ||
} | ||
?> | ||
</div> |
Oops, something went wrong.