| 1 |
<?php |
| 2 |
/** |
| 3 |
* Pre publish actions view |
| 4 |
* |
| 5 |
* @package ConvertKit |
| 6 |
* @author ConvertKit |
| 7 |
*/ |
| 8 |
|
| 9 |
?> |
| 10 |
<div id="convertkit-pre-publish-actions"> |
| 11 |
<div class="misc-pub-section"> |
| 12 |
<?php |
| 13 |
// Iterate through actions. |
| 14 |
foreach ( $pre_publish_actions as $name => $pre_publish_action ) { |
| 15 |
printf( |
| 16 |
'<label for="convertkit_action_%s"> |
| 17 |
%s |
| 18 |
<input type="checkbox" name="_convertkit_action_%s" id="convertkit_action_%s" value="1"%s /> |
| 19 |
</label> |
| 20 |
<p class="description">%s</p>', |
| 21 |
esc_html( $name ), |
| 22 |
esc_html( $pre_publish_action['label'] ), |
| 23 |
esc_html( $name ), |
| 24 |
esc_html( $name ), |
| 25 |
esc_html( checked( get_post_meta( $post->ID, '_convertkit_action_' . $name, true ), '1', false ) ), |
| 26 |
esc_html( $pre_publish_action['description'] ) |
| 27 |
); |
| 28 |
} |
| 29 |
wp_nonce_field( 'wp-convertkit-pre-publish-actions', 'wp-convertkit-pre-publish-actions-nonce' ); |
| 30 |
?> |
| 31 |
</div> |
| 32 |
</div> |
| 33 |
|