web/wp-content/plugins/social/views/wp-admin/post/meta/broadcast/default.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

<div class="misc-pub-section">
	<h4 class="mar-top-none"><?php _e('Broadcast Post', 'social'); ?></h4>
	<p>
		<input type="radio" name="social_notify" id="social_notify_yes" value="1"<?php checked(true, (bool) ($notify and $post->post_status != 'private'), true); disabled('private', $post->post_status, true); ?> />
		<label for="social_notify_yes" class="social-toggle-label"><?php _e('Yes', 'social'); ?></label>
	
		<input type="radio" name="social_notify" id="social_notify_no" value="0"<?php checked(true, (bool) (!$notify or $post->post_status == 'private'), true); disabled('private', $post->post_status, true); ?> />
		<label for="social_notify_no" class="social-toggle-label"><?php _e('No', 'social'); ?></label>
	</p>
</div>