PluginProbe
Social Media Auto Poster – Schedule & Publish to Buffer / 6.2.5
Social Media Auto Poster – Schedule & Publish to Buffer v6.2.5
6.2.5 6.2.4 6.2.3 6.2.2 6.2.1 6.2.0 6.1.2 6.1.1 6.1.0 6.0.9 6.0.8 6.0.7 6.0.6 6.0.5 6.0.4 6.0.3 6.0.2 6.0.1 6.0.0 3.8.1 3.8.2 3.8.3 3.8.4 3.8.5 3.8.6 All 126 releases
wp-to-buffer / lib / social / views / settings-post-action-status-row.php

settings-post-action-status-row.php in Social Media Auto Poster – Schedule & Publish to Buffer 6.2.5, at lib/social/views/settings-post-action-status-row.php

24 lines 1.2 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Outputs a status setting within a table of statuses for an action (publish,update,repost,bulk publish).
4 *
5 * @package WPZinc\Social
6 * @author WP Zinc
7 */
8
9 if ( ! defined( 'ABSPATH' ) ) {
10 exit; // Exit if accessed directly.
11 }
12 ?>
13 <tr class="status sortable<?php echo esc_attr( $key === 0 ? ' first' : '' ); ?>" data-status-index="<?php echo esc_attr( $key ); ?>" data-status='<?php echo wp_json_encode( $status, JSON_HEX_APOS ); ?>' data-labels='<?php echo wp_json_encode( $labels, JSON_HEX_APOS ); ?>'>
14 <td class="count">#<?php echo esc_html( $key + 1 ); ?></td>
15 <td class="actions">
16 <a href="#" class="dashicons dashicons-move move-status" title="<?php esc_attr_e( 'Reorder Status', 'wp-to-buffer' ); ?>"></a>
17 <a href="#" class="dashicons dashicons-edit edit-status" title="<?php esc_attr_e( 'Edit Status', 'wp-to-buffer' ); ?>"></a>
18 <a href="#" class="dashicons dashicons-trash delete-status" title="<?php esc_attr_e( 'Delete Status', 'wp-to-buffer' ); ?>"></a>
19 </td>
20 <td class="post_type"><?php echo esc_html( $row['post_type'] ); ?></td>
21 <td class="message"><?php echo esc_html( $row['message'] ); ?></td>
22 <td class="schedule"><?php echo esc_html( $row['schedule'] ); ?></td>
23 </tr>
24