web/wp-content/plugins/social/views/wp-admin/post/broadcast/options.php
author Anthony Ly <anthonyly.com@gmail.com>
Wed, 19 Dec 2012 17:46:52 -0800
changeset 204 09a1c134465b
parent 196 5e8dcbe22c24
permissions -rw-r--r--
man wordpress + plugins order post + slideshow

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" <?php language_attributes(); ?>>
<head>
	<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
	<title><?php _e('Social Broadcasts', 'social'); ?></title>
<?php
wp_admin_css('install', true);
$social = Social::instance();
$social->admin_enqueue_assets();
?>
	<link rel="stylesheet" id="social-css" href="<?php echo esc_url(SOCIAL_ADMIN_CSS); ?>" type="text/css" media="all" />
</head>
<body class="<?php echo esc_attr($clean); ?>">
<h1 id="logo"><?php _e('Social Broadcasts', 'social'); ?></h1>
<form id="setup" method="post" class="broadcast-interstitial" action="<?php echo esc_url(admin_url('post.php?social_controller=broadcast&social_action=options')); ?>">
<?php wp_nonce_field(); ?>
<input type="hidden" name="post_ID" value="<?php echo $post->ID; ?>" />
<input type="hidden" name="location" value="<?php echo $location; ?>" />
<div class="form-table social-broadcast-options">
<?php
foreach ($_services as $key => $accounts) {
	$service = $services[$key];
	if (count($accounts)) {
?>
<section>
	<header>
		<h2><?php _e($service->title(), 'social'); ?></h2>
	</header>
	<ul class="accounts">
<?php
		$i = 0;
		foreach ($accounts as $account) {
			$classes = array($service->key());
			if ($i == 0) {
				$classes[] = 'proto';
			}
			if (!empty($account['error'])) {
				$classes[] = 'error';
			}
?>
		<li class="account <?php echo implode(' ', $classes); ?>">
			<label for="<?php echo esc_attr($account['field_name_checked'].$account['field_value_checked']); ?>">
				<img src="<?php echo esc_attr($account['avatar']); ?>" width="32" height="32" />
				<span class="name"><?php echo esc_html($account['name']); ?></span>
			</label>
			<div class="broadcast-content">
<?php
			if (count($account['broadcasts'])) {
?>
				<h3><?php _e('Previous Broadcasts', 'social'); ?></h3>
				<ul class="broadcasts">
<?php
				foreach ($account['broadcasts'] as $broadcast) {
					// already escaped in controller
?>
					<li><?php echo $broadcast; ?></li>
<?php
				}
?>
				</ul>
<?php
			}
			if (!empty($account['error'])) {
				echo '<p class="error">'.esc_html($account['error']).'</p>';
			}
?>
				<div class="broadcast-edit<?php echo ($account['edit'] ? ' edit' : ''); echo ($account['checked'] ? ' checked' : ''); ?>">
					<input type="checkbox" name="<?php echo esc_attr($account['field_name_checked']); ?>" id="<?php echo esc_attr($account['field_name_checked'].$account['field_value_checked']); ?>" value="<?php echo esc_attr($account['field_value_checked']); ?>"<?php checked($account['checked'], true); ?> />
					<textarea name="<?php echo esc_attr($account['field_name_content']); ?>" cols="40" rows="2" maxlength="<?php echo esc_attr($account['maxlength']); ?>"><?php echo esc_textarea($account['content']); ?></textarea>
					<p class="readonly"><?php echo esc_textarea($account['content']); ?></p>
					<a href="#" class="edit"><?php _e('Edit', 'social'); ?></a>
					<span class="counter"></span>
<?php do_action('social_broadcast_form_item_edit', $post, $service, $account); ?>
				</div>
<?php do_action('social_broadcast_form_item_content', $post, $service, $account); ?>
			</div>
<?php do_action('social_broadcast_form_item', $post, $service, $account); ?>
		</li>
<?php
			$i++;
		}
?>
	</ul>
</section>
<?php
	}
}
?>
</div>
<p class="step">
	<input type="hidden" name="social_action" value="<?php echo esc_attr($step); ?>" />
	<input type="submit" name="social_submit" value="<?php echo $step_text; // already localized in controller ?>" class="button" />
	<a href="<?php echo esc_url(get_edit_post_link($post->ID, 'url')); ?>"><?php _e('Cancel', 'social'); ?></a>
</p>
</form>
<script type="text/javascript" src="<?php echo esc_url(includes_url('/js/jquery/jquery.js')); ?>"></script>
<script type="text/javascript" src="<?php echo esc_url(SOCIAL_ADMIN_JS); ?>"></script>
</body>
</html>