web/wp-content/plugins/social/views/wp-admin/options.php
author Anthony Ly <anthonyly.com@gmail.com>
Tue, 12 Mar 2013 18:21:39 +0100
changeset 206 919b4ddb13fa
parent 196 5e8dcbe22c24
permissions -rw-r--r--
modification logo footer cccb

<form id="setup" method="post" action="<?php echo esc_url(admin_url('options-general.php?social_controller=settings&social_action=index')); ?>">
<?php wp_nonce_field(); ?>
<input type="hidden" name="social_action" value="settings" />
<?php if (isset($_GET['saved'])): ?>
<div id="message" class="updated">
	<p><strong><?php _e('Social settings have been updated.', 'social'); ?></strong></p>
</div>
<?php endif; ?>
<div class="wrap" id="social_options_page">
	<div class="social-view-header cf-clearfix">
		<h2><?php _e('Social', 'social'); ?></h2>
		<div class="social-view-subtitle"><?php printf(__('Compliments of <a class="social-mailchimp-link" href="%s">MailChimp</a>', 'social'), 'http://mailchimp.com/'); ?></div>
	</div>
	<div class="social-view">
		<table class="form-table">
			<tr id="social-accounts">
				<th>
					<?php _e('Accounts', 'social'); ?>
					<p class="description" style="padding-top: 40px;"><?php printf(__('Available to all blog authors. Add accounts that only you can use in <a href="%s">your profile</a>.', 'social'), esc_url(admin_url('profile.php#social-accounts'))); ?></p>
				</th>
				<td>
<?php
echo Social_View::factory(
	'wp-admin/parts/accounts',
	compact('services', 'accounts', 'defaults')
);
?>
				</td>
			</tr>
			<tr>
				<th><?php _e('Broadcasting is on by default', 'social'); ?></th>
				<td>
					<input type="radio" name="social_broadcast_by_default" id="social-broadcast-by-default-yes" value="1"<?php checked('1', Social::option('broadcast_by_default'), true); ?>
					<label for="social-broadcast-by-default-yes"><?php _e('Yes', 'social'); ?></label>

					<input type="radio" name="social_broadcast_by_default" id="social-broadcast-by-default-no" value="0"<?php checked('0', Social::option('broadcast_by_default'), true); ?>
					<label for="social-broadcast-by-default-no"><?php _e('No', 'social'); ?></label>
				</td>
			</tr>
			<tr>
				<th>
					<label for="social_broadcast_format"><?php _e('Post broadcast format', 'social'); ?></label>
				</th>
				<td>
					<input type="text" class="regular-text" name="social_broadcast_format" id="social_broadcast_format" value="<?php echo esc_attr(Social::option('broadcast_format')); ?>" />
					<p class="description"><?php _e('How you would like posts to be formatted when broadcasting to Twitter or Facebook?', 'social'); ?></p>

					<div class="description">
						<?php _e('Tokens:', 'social'); ?>
						<ul>
<?php 
foreach (Social::broadcast_tokens() as $token => $description) {
	if (!empty($description)) {
		$description = ' - '.$description;
	}
?>
							<li><b><?php echo esc_html($token); ?></b><?php echo esc_html($description); ?></li>
<?php
}
?>
						</ul>
					</div>
				</td>
			</tr>
			<tr>
				<th>
					<label for="social_comment_broadcast_format"><?php _e('Comment broadcast format', 'social'); ?></label>
				</th>
				<td>
					<input type="text" class="regular-text" name="social_comment_broadcast_format" id="social_comment_broadcast_format" value="<?php echo esc_attr(Social::option('comment_broadcast_format')); ?>" />
					<p class="description"><?php _e('How you would like comments to be formatted when broadcasting to Twitter or Facebook.', 'social'); ?></p>

					<div class="description">
						<?php _e('Tokens:', 'social'); ?>
						<ul>
<?php 
foreach (Social::comment_broadcast_tokens() as $token => $description) {
	if (!empty($description)) {
		$description = ' - '.$description;
	}
?>
							<li><b><?php echo esc_html($token); ?></b><?php echo esc_html($description); ?></li>
<?php
}
?>
						</ul>
					</div>
				</td>
			</tr>
			<tr>
				<th><?php _e('Twitter @anywhere', 'social'); ?></th>
				<td>
					<p>Social Version 2.6 has removed @anywhere support to comply with <a href="https://dev.twitter.com/blog/sunsetting-anywhere">Twitter's decision to sunset the service</a>.</p>
					<p>If you would like to continue to use @anywhere, <a href="https://www.google.com/search?q=WordPress+@anywhere+plugin" target="_blank">there are many plugins available to accomodate</a>.</p>
				</td>
			</tr>
		</table>
<?php
$fetch = Social::option('fetch_comments');
$toggle = (
	(!empty($fetch) and $fetch != '1') or
	Social::option('debug') == '1' or
	Social::option('use_standard_comments') == 1 or
	Social::option('disable_broadcasting') == 1
) ? ' social-open' : '';
?>
		<div class="social-collapsible<?php echo $toggle; ?>">
			<h3 class="social-title"><a href="#social-advanced"><?php _e('Advanced Options', 'social'); ?></a></h3>
			<div class="social-content">
				<table id="social-advanced" class="form-table">
					<tr>
						<th>
							<?php _e('Misc.', 'social'); ?>
						</th>
						<td>
							<ul>
								<li>
									<label for="social_use_standard_comments">
										<input type="checkbox" name="social_use_standard_comments" id="social_use_standard_comments" value="1" <?php checked(Social::option('use_standard_comments'), '1'); ?> />
										<?php _e("Disable Social's comment display (use standard theme output instead).", 'social'); ?>
									</label>
								</li>
								<li>
									<label for="social_disable_broadcasting">
										<input type="checkbox" name="social_disable_broadcasting" id="social_disable_broadcasting" value="1" <?php checked(Social::option('disable_broadcasting'), '1'); ?> />
										<?php _e("Disable Social's broadcasting feature.", 'social'); ?>
									</label>
								</li>
								<li>&nbsp;</li>
								<li>
									<?php
										$twitter_accounts = Social::instance()->service('twitter')->accounts();
										$social_api_accounts = Social::option('social_api_accounts');
										$selected_id = $social_api_accounts['twitter'];
									?>
									<div class="twitter-api-account">
										<label>Twitter Default API Account</label>
										<select id="social_api_accounts-twitter" name="social_api_accounts[twitter]">
											<?php foreach ($twitter_accounts as $account): $acct_id = $account->id() ?>
												<?php if ($account->personal()) { continue; } ?>
												<option value="<?php echo $acct_id ?>" <?php selected($acct_id, $selected_id) ?>><?php echo esc_html($account->name()) ?></option>
											<?php endforeach; ?>
										</select>
									</div>
									<p class="description" style="max-width: 450px;"><?php _e('Account for general (non account specific) Twitter API interaction.', 'social'); ?></p>
								</li>
							</ul>
						</td>
					</tr>
					<tr>
						<th><?php _e('Fetch new comments', 'social'); ?></th>
						<td>
							<ul>
								<li>
									<label for="fetch_comments_auto">
										<input type="radio" name="social_fetch_comments" value="1" id="fetch_comments_auto" style="position:relative;top:-1px"<?php echo Social::option('fetch_comments') == '1' ? ' checked="checked"' : ''; ?> />
										<?php _e('Automatically', 'social'); ?>
										<span class="description"><?php _e('(easiest)', 'social'); ?></span>
									</label>
								</li>
								<li>
									<label for="fetch_comments_never">
										<input type="radio" name="social_fetch_comments" value="0" id="fetch_comments_never" style="position:relative;top:-1px"<?php echo !in_array(Social::option('fetch_comments'), array('1', '2')) ? ' checked="checked"' : ''; ?> />
										<?php _e('Never', 'social'); ?>
										<span class="description"><?php _e('(disables fetching of comments)', 'social'); ?></span>
									</label>
								</li>
								<li>
									<label for="fetch_comments_cron">
										<input type="radio" name="social_fetch_comments" value="2" id="fetch_comments_cron" style="position:relative;top:-1px"<?php echo Social::option('fetch_comments') == '2' ? ' checked="checked"' : ''; ?> />
										<?php _e('Using a custom CRON job <span class="description">(advanced)</span>', 'social'); ?>
									</label>
									<p class="description"><?php _e('If you select this option, new tweets and Facebook posts will not be fetched unless you set up a system CRON job or fetch new items manually from the post edit screen. More help is also available in&nbsp;<code>README.txt</code>.', 'social'); ?></p>
									<?php if (Social::option('fetch_comments') == '2'): ?>
									<div class="social-callout">
										<h3 class="social-title"><?php _e('CRON Setup', 'social'); ?></h3>
										<dl class="social-kv">
											<dt><?php _e('CRON API Key', 'social'); ?> <small>(<a href="<?php echo esc_url(wp_nonce_url(admin_url('options-general.php?page=social.php&social_controller=settings&social_action=regenerate_api_key'), 'regenerate_api_key')); ?>" rel="social_api_key" id="social_regenerate_api_key"><?php _e('regenerate', 'social'); ?></a>)</small></dt>
											<dd>
												<code class="social_api_key"><?php echo esc_html(Social::option('system_cron_api_key')); ?></code>
											</dd>
										</dl>
										<p><?php _e('For your system CRON to run correctly, make sure it is pointing towards a URL that looks something like the following:', 'social'); ?></p>
										<code><?php echo esc_url(home_url('index.php?social_controller=cron&social_action=cron_15&api_key='.Social::option('system_cron_api_key'))); ?></code>
										<?php endif; ?>
									</div>
								</li>
							</ul>
						</td>
					</tr>
					<tr>
						<th>
							<?php _e('Debug Mode', 'social'); ?>
							<span class="description"><?php _e('(nerds only)', 'social'); ?></span>
						</th>
						<td>
							<p style="margin-top:0"><?php _e('If you turn debug on, Social will save additional information in <code>debug_log.txt</code> file. Not recommended for production environments.', 'social'); ?></p>
							<ul>
								<li>
									<label for="debug_mode_no">
										<input type="radio" name="social_debug" id="debug_mode_no" value="0"<?php echo Social::option('debug') != '1' ? ' checked="checked"' : ''; ?> />
										<?php _e('Off <span class="description">(recommended)</span>', 'social'); ?>
									</label>
								</li>
								<li>
									<label for="debug_mode_yes">
										<input type="radio" name="social_debug" id="debug_mode_yes" value="1"<?php echo Social::option('debug') == '1' ? ' checked="checked"' : ''; ?> />
										<?php _e('On <span class="description">(for troubleshooting)</span>', 'social'); ?>
									</label>
								</li>
							</ul>

							<strong><?php _e('Debug log location:', 'social'); ?></strong> <code><?php echo Social::$plugins_path.'debug_log.txt'; ?></code>
						</td>
					</tr>
				</table>
			</div>
<?php
do_action('social_advanced_options');
?>
		</div>
		<p class="submit" style="clear:both">
			<input type="submit" name="submit" value="Save Settings" class="button-primary" />
		</p>
	</div>
</div>
</form>