143 lines
7.2 KiB
PHP
143 lines
7.2 KiB
PHP
<form id="pw-handler" action="" method="post">
|
|
<input type="hidden" name="action" value="change-memberid" />
|
|
<table class="form-table">
|
|
<tr>
|
|
<th scope="row"><?php _e('Your member number', 'plugin-wonderful') ?></th>
|
|
<td>
|
|
<input id="memberid" name="memberid" value="<?php echo get_option("plugin-wonderful-memberid") ?>" />
|
|
<em><?php _e('(you can find your member number by logging in to Project Wonderful and clicking on your profile image in the upper right of the page)', 'plugin-wonderful') ?></em>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row"><?php _e('Use Standard Adboxes?', 'plugin-wonderful') ?></th>
|
|
<td>
|
|
<label>
|
|
<input type="checkbox"
|
|
name="use-standardcode"
|
|
value="yes"
|
|
<?php echo (get_option("plugin-wonderful-use-standardcode") == 1) ? "checked" : "" ?> />
|
|
<em><?php _e('(If you want to use standard code adboxes instead of advanced code, enable this option)', 'plugin-wonderful') ?></em>
|
|
</label>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row"><?php _e('Enable Body Copy Embedding?', 'plugin-wonderful') ?></th>
|
|
<td>
|
|
<label>
|
|
<input type="checkbox"
|
|
name="enable-body-copy-embedding"
|
|
value="yes"
|
|
<?php echo (get_option("plugin-wonderful-enable-body-copy-embedding") == 1) ? "checked" : "" ?> />
|
|
<em><?php _e('(When enabled, you can embed ads directly in body copy using a PW() tag. Read below for more details.)', 'plugin-wonderful') ?></em>
|
|
</label>
|
|
</td>
|
|
</tr> <tr>
|
|
<td> </td>
|
|
<td>
|
|
<input type="submit" value="<?php _e('Change and Redownload Adbox Information', 'plugin-wonderful') ?>" class="button" /> <em>(<?php _e('if you\'ve modified adbox settings on Project Wonderful, just click this button to refresh your adbox code.', 'plugin-wonderful') ?>)</em>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</form>
|
|
<?php if ($this->publisher_info !== false) { ?>
|
|
<h3><?php _e('Adbox Information', 'plugin-wonderful') ?></h3>
|
|
<form action="" method="post">
|
|
<input type="hidden" name="action" value="change-adbox-settings" />
|
|
<table class="widefat post fixed">
|
|
<tr>
|
|
<th width="12%" class="manage-column"><?php _e('Site Name', 'plugin-wonderful') ?></th>
|
|
<th width="13%" class="manage-column"><?php _e('Description', 'plugin-wonderful') ?></th>
|
|
<th class="manage-column" align="center"><?php _e('Size & Dimensions', 'plugin-wonderful') ?></th>
|
|
<th width="100" class="manage-column" align="center"><?php _e('Template Tag Identifier', 'plugin-wonderful') ?></th>
|
|
<th class="manage-column" align="center"><?php _e('Use in RSS Feed?', 'plugin-wonderful') ?></th>
|
|
<th style="text-align: right !important" width="35%" class="manage-column"><?php _e('Raw Template Tag <em>(for direct use in theme)</em>', 'plugin-wonderful') ?></th>
|
|
</tr>
|
|
<?php
|
|
$first_adboxid = null;
|
|
foreach ($this->publisher_info->adboxes as $adbox) {
|
|
if (empty($first_adboxid)) {
|
|
if (!empty($adbox->template_tag_id)) {
|
|
$first_adboxid = "'" . $adbox->template_tag_id . "'";
|
|
} else {
|
|
$first_adboxid = $adbox->adboxid;
|
|
}
|
|
} ?>
|
|
<tr>
|
|
<td><a href="<?php echo $adbox->url ?>" target="_top" title="<?php printf(__('Ad for use on %s (opens in new window)', 'plugin-wonderful'), $adbox->url) ?>"><?php echo $adbox->sitename ?></a></td>
|
|
<td>
|
|
<?php
|
|
if (strlen($adbox->description) > 70) {
|
|
echo substr($adbox->description, 0, 70) . '...';
|
|
} else {
|
|
echo $adbox->description;
|
|
}
|
|
?>
|
|
</td>
|
|
<td><?php echo $adbox->adtype ?> - <?php echo $adbox->dimensions ?></td>
|
|
<td><input type="text" style="width: 100px" name="template_tag_id[<?php echo $adbox->adboxid ?>]" value="<?php echo $adbox->template_tag_id ?>" /></td>
|
|
<td align="center"><input type="checkbox" name="in_rss_feed[<?php echo $adbox->adboxid ?>]" value="yes" <?php echo !empty($adbox->in_rss_feed) ? " checked" : "" ?> /></td>
|
|
<td align="right">
|
|
<tt>the_project_wonderful_ad(<?php
|
|
if (!empty($adbox->template_tag_id)) {
|
|
echo "'" . $adbox->template_tag_id . "'";
|
|
} else {
|
|
echo $adbox->adboxid;
|
|
}
|
|
?>)</tt>
|
|
</td>
|
|
</tr>
|
|
<?php
|
|
}
|
|
?>
|
|
</table>
|
|
<div style="text-align: center">
|
|
<input type="submit" class="button" value="<?php _e('Submit Adbox Changes', 'plugin-wonderful') ?>" />
|
|
</div>
|
|
</form>
|
|
<?php } ?>
|
|
|
|
<?php if ($this->publisher_info !== false) { ?>
|
|
<h3><?php _e('Using Widgets to Put Ads on Your Site', 'plugin-wonderful') ?></h3>
|
|
<p>
|
|
<?php _e('Visit <a href="widgets.php">Appearance -> Widgets</a> to quickly add Project Wonderful advertisements to your site. Widgets only work in WordPress 2.8 and above.', 'plugin-wonderful') ?>
|
|
</p>
|
|
|
|
<h3><?php _e('Using the Template Tags in Your Theme', 'plugin-wonderful') ?></h3>
|
|
<p>
|
|
<?php _e('Find the location in your theme where you want the ad to appear. Type in the template tag for that ad, surrounded in PHP tags, like this:', 'plugin-wonderful') ?>
|
|
</p>
|
|
|
|
<tt>
|
|
<?php the_project_wonderful_ad(<?php echo $first_adboxid ?>) ?>
|
|
</tt>
|
|
|
|
|
|
<h3><?php _e('Embedding Ads Directly In Body Copy', 'plugin-wonderful') ?></h3>
|
|
<p>
|
|
<?php _e('In your blog post, use a PW() tag with either the adbox ID or the template tag name to embed the adbox directly in your entry:', 'plugin-wonderful') ?>
|
|
</p>
|
|
|
|
<tt>PW(<?php echo $first_adboxid ?>)</tt>
|
|
|
|
<p><?php _e('If you need to display the PW() code in your post, escape the parenthesis:', 'plugin-wonderful') ?></p>
|
|
|
|
<tt>PW\(<?php echo $first_adboxid ?>\)</tt>
|
|
|
|
<h3><?php _e('Inserting Ads Into Your RSS Feeds <em>(experimental)</em>', 'plugin-wonderful') ?></h3>
|
|
<p>
|
|
<?php _e('You can insert your Project Wonderful ads into you RSS feeds. The ads you insert into your feed also need to be crawlable by the Project Wonderful ad checking robot, so it\'s recommended that you put ads into your RSS feed that you\'re already showing on your site. Not all RSS feed readers support displaying the embedded ads.', 'plugin-wonderful') ?>
|
|
</p>
|
|
|
|
<?php if (isset($_GET['allow-destroy'])) { ?>
|
|
<h3><?php _e('Rebuilding Your Project Wonderful Ad Database', 'plugin-wonderful') ?></h3>
|
|
<p>
|
|
<?php _e('If you are having issues with your ads not downloading correctly from Project Wonderful, click this button to destroy and rebuild the database that stores ad info.', 'plugin-wonderful') ?>
|
|
</p>
|
|
|
|
<form id="pw-handler" action="" method="post">
|
|
<input type="hidden" name="action" value="rebuild-database" />
|
|
<input type="submit" value="<?php _e('Destroy and Rebuild Database', 'plugin-wonderful') ?>" class="button" />
|
|
</form>
|
|
<?php } ?>
|
|
<?php } ?>
|