web/wp-content/plugins/social/views/wp-admin/parts/accounts.php
author Anthony Ly <anthonyly.com@gmail.com>
Tue, 04 Dec 2012 18:43:10 -0800
changeset 196 5e8dcbe22c24
permissions -rw-r--r--
ajout plugins pour résoudre les messages d'erreurs

<?php

// expects the following variables to be passed in:
// $services (full list of services)
// $accounts (list of accounts to show for this screen)
// $defaults (accounts that are checked for default broadcast)

foreach ($services as $key => $service) {
?>
<div class="social-accounts">
<?php
	$button = '<div class="social-connect-button cf-clearfix"><a href="'.esc_url($service->authorize_url()).'" id="'.esc_attr($key).'_signin" class="social-login" target="_blank"><span>'.sprintf(__('Sign in with %s.', 'social'), esc_html($service->title())).'</span></a></div>';
	echo apply_filters('social_service_button', $button, $service);
?>
	<ul>
<?php
	$i = 0;
	foreach ($service->accounts() as $account) {
		if (in_array($account->id(), $accounts[$key])) {
			$profile_url = esc_url($account->url());
			$profile_name = esc_html($account->name());
			$disconnect = $service->disconnect_link($account, true);
			$name = sprintf('<a href="%s">%s</a>', $profile_url, $profile_name);
?>
		<li class="social-accounts-item">
			<img src="<?php echo esc_url($account->avatar()); ?>" width="32" height="32" />
			<span class="name"><?php echo $name; ?></span>
			<label class="default" for="<?php echo esc_attr($key.$account->id()); ?>">
				<input type="checkbox" name="social_default_accounts[]" id="<?php echo esc_attr($key.$account->id()); ?>" value="<?php echo esc_attr($key.'|'.$account->id()); ?>"<?php echo ((isset($defaults[$key]) and in_array($account->id(), array_values($defaults[$key]))) ? ' checked="checked"' : ''); ?> />
				<?php _e('Default', 'social'); ?>
			</label>
			<span class="disconnect"><?php echo $disconnect; ?></span>
<?php
			// this makes a live API call to get updated accounts
			$child_accounts = $account->fetch_child_accounts();
			if (count($child_accounts)) {
?>
			<ul>
<?php
				foreach ($child_accounts as $child_account) {
					if (isset($defaults[$service->key()]) and
						isset($defaults[$service->key()][$account->child_account_key()]) and
						isset($defaults[$service->key()][$account->child_account_key()][$account->id()]) and
						in_array($child_account->id, $defaults[$service->key()][$account->child_account_key()][$account->id()])
					) {
						$default_checked = ' checked="checked"';
					}
					else {
						$default_checked = '';
					}
					$is_profile = defined('IS_PROFILE_PAGE');
					if ($account->page($child_account->id, $is_profile) !== false) {
						$enabled_checked = ' checked="checked"';
					}
					else {
						$enabled_checked = '';
					}
?>
				<li class="social-accounts-item">
					<img src="<?php echo esc_url($account->child_account_avatar($child_account)); ?>" width="32" height="32" />
					<span class="name"><?php echo esc_html($child_account->name); ?></span>
					<label class="default" for="<?php echo esc_attr($key.$child_account->id); ?>">
						<input type="checkbox" name="social_default_pages[<?php echo esc_attr($account->id()); ?>][]" id="<?php echo esc_attr($key.$child_account->id); ?>" value="<?php echo esc_attr($child_account->id); ?>"<?php echo $default_checked; ?> />
						<?php _e('Default', 'social'); ?>
					</label>
					<label class="enabled" for="social_enabled_child_accounts-<?php echo esc_attr($key.$child_account->id); ?>">
						<input type="checkbox" name="social_enabled_child_accounts[<?php echo esc_attr($service->key()); ?>][]" id="social_enabled_child_accounts-<?php echo esc_attr($key.$child_account->id); ?>" value="<?php echo esc_attr($child_account->id); ?>"<?php echo $enabled_checked; ?> />
						<?php _e('Enabled', 'social'); ?>
					</label>
				</li>
<?php
				}
?>
			</ul>
<?php
			}
			$i++;
?>
		</li><!-- /li.social-accounts-item -->
<?php
		}
	}
	if ($i == 0) {
?>
		<li class="social-accounts-item none">
			<img src="http://www.gravatar.com/avatar/a06082e4f876182b547f635d945e744e?s=32&d=mm" width="32" height="32" />
			<span class="name"><?php _e('No Accounts', 'social'); ?></span>
		</li>
<?php
	}
?>
	</ul>
</div>
<?php
}
?>
<p class="description" style="max-width: 450px;"><?php _e('Default accounts will auto-broadcast when you publish via XML-RPC or email.', 'social'); ?></p>