# wpdirectorykit/1.2.3/application/views/wdk_messages/index.php

WP Directory Kit, version 1.2.3. 146 lines.

- Page: https://pluginprobe.com/plugins/wpdirectorykit/1.2.3/code/application/views/wdk_messages/index.php
- Raw: https://pluginprobe.com/plugins/wpdirectorykit/1.2.3/raw/application/views/wdk_messages/index.php
- Modified: 2023-05-25T15:09:54+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/wpdirectorykit/1.2.3/code/application/views/wdk_messages/index.php#L10-L20`.

```php
<?php
/**
 * The template for Messages Management.
 *
 * This is the template that table, search layout
 *
 */

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly.
}

?>

<!-- This file should primarily consist of HTML with a little bit of PHP. -->

<div class="wrap wdk-wrap">

    <h1 class="wp-heading-inline"><?php echo __('Messages Management', 'wpdirectorykit'); ?></h1>
    <?php
        $success_message = NULL;
        if(isset($_GET['custom_message']))
            $success_message = esc_html(urldecode($_GET['custom_message']));

        $form->messages('class="alert alert-danger"', $success_message);
    ?>
    <form method="GET" action="<?php echo wmvc_current_edit_url(); ?>" novalidate="novalidate">
        <div class="tablenav top">
            <div class="alignleft actions">
                <input type="hidden" name="page" value="wdk_messages" />
                <label class="screen-reader-text" for="search"><?php echo __('Filter by keyword', 'wpdirectorykit'); ?></label>
                <input type="text" name="search" id="search" class="postform left" value="<?php echo wmvc_show_data('search', $db_data, ''); ?>" placeholder="<?php echo __('Filter by keyword', 'wpdirectorykit'); ?>" />

                <label class="screen-reader-text" for="user_id_editor"><?php echo esc_html__('Filter by user', 'wpdirectorykit'); ?></label>
                <?php echo wmvc_select_option('user_id_editor', $users, wmvc_show_data('user_id_editor', $db_data, ''), NULL, __('User', 'wpdirectorykit')); ?>
              

                <label class="screen-reader-text" for="order_by"><?php echo __('Order By', 'wpdirectorykit'); ?></label>
                <?php echo wmvc_select_option('order_by', $order_by, wmvc_show_data('order_by', $db_data, ''), NULL, __('Order by', 'wpdirectorykit')); ?>

                <input type="submit" name="filter_action" id="post-query-submit" class="button" value="<?php echo __('Filter', 'wpdirectorykit'); ?>">
            </div>
            <?php echo wmvc_xss_clean($pagination_output); ?>
            <br class="clear">
        </div>
    </form>

    <form method="GET" action="<?php echo wmvc_current_edit_url(); ?>" novalidate="novalidate">
    <table class="wp-list-table widefat fixed striped table-view-list pages">
        <thead>
            <tr>
                <td id="cb" class="manage-column column-cb check-column"><label class="screen-reader-text" for="cb-select-all-1"><?php echo __('Select All', 'wpdirectorykit'); ?></label><input id="cb-select-all-1" type="checkbox"></td>
                <th style="width:50px;"><?php echo __('#ID', 'wpdirectorykit'); ?></th>
                <th><?php echo __('Email From', 'wpdirectorykit'); ?></th>
                <th><?php echo __('To User', 'wpdirectorykit'); ?></th>
                <th><?php echo __('Date', 'wpdirectorykit'); ?></th>
                <th><?php echo __('Message', 'wpdirectorykit'); ?></th>
                <th class="actions_column"><?php echo __('Actions', 'wpdirectorykit'); ?></th>
            </tr>
        </thead>
        <?php if (count($messages) == 0) : ?>
            <tr class="no-items">
                <td class="colspanchange" colspan="7"><?php echo __('No Messages found.', 'wpdirectorykit'); ?></td>
            </tr>
        <?php endif; ?>
        <?php foreach ($messages as $item) : ?>
            <tr>
                <th scope="row" class="check-column">
                    <input id="cb-select-<?php echo wmvc_show_data('idmessage', $item, '-'); ?>" type="checkbox" name="post[]" value="<?php echo wmvc_show_data('idmessage', $item, '-'); ?>">
                    <div class="locked-indicator">
                        <span class="locked-indicator-icon" aria-hidden="true"></span>
                        <span class="screen-reader-text"><?php echo __('Is Locked', 'wpdirectorykit'); ?></span>
                    </div>
                </th>
                <td>
                    <?php echo wmvc_show_data('idmessage', $item, '-'); ?>
                </td>
                <td>
                    <strong>
                        <a class="row-title" href="<?php echo get_admin_url() . "admin.php?page=wdk_messages&function=edit&id=" . wmvc_show_data('idmessage', $item, '-'); ?>"><?php echo wmvc_show_data('email_sender', $item, '-'); ?></a>
                        <?php if(!wmvc_show_data('is_readed', $item, 0)): ?>
                            <span class="label label-success"><?php echo esc_html__('Not readed', 'wpdirectorykit'); ?></span>
                        <?php else: ?>
                            <span class="label label-info"><?php echo esc_html__('Readed', 'wpdirectorykit'); ?></span>
                        <?php endif; ?>
                    </strong>
                    <div class="row-actions">
                        <span class="edit"><a href="<?php echo get_admin_url() . "admin.php?page=wdk_messages&function=edit&id=" . wmvc_show_data('idmessage', $item, '-'); ?>"><?php echo __('Edit', 'wpdirectorykit'); ?></a> | </span>
                        <span class="trash "><a href="<?php echo get_admin_url() . "admin.php?page=wdk_messages&function=delete&paged=".esc_attr($paged)."&id=" . wmvc_show_data('idmessage', $item, '-'); ?>&_wpnonce=<?php echo wp_create_nonce( 'wdk-messages-delete_'.wmvc_show_data('idmessage', $item, '-'));?>" class="submitdelete question_sure"  title="<?php echo esc_attr__('Remove', 'wpdirectorykit');?>" ><?php echo __('Delete', 'wpdirectorykit'); ?></a></span>
                    </div>
                </td>
                <td>
                    <?php echo wmvc_show_data('display_name', $item); ?>
                </td>
                <td>
                    <?php echo wdk_get_date(wmvc_show_data('message_date', $item), false); ?>
                </td>
                <td>
                    <?php echo wp_trim_words(wmvc_show_data('message', $item, '-'), 10); ?>
                </td>
                <td class="actions_column">
                    <a href="<?php echo get_admin_url() . "admin.php?page=wdk_messages&function=edit&id=" . wmvc_show_data('idmessage', $item, '-'); ?>" title="<?php echo esc_attr__('Edit','wpdirectorykit');?>"><span class="dashicons dashicons-edit"></span></a>
                    <a class="question_sure" href="<?php echo get_admin_url() . "admin.php?page=wdk_messages&function=delete&paged=".esc_attr($paged)."&id=" . wmvc_show_data('idmessage', $item, '-'); ?>&_wpnonce=<?php echo wp_create_nonce( 'wdk-messages-delete_'.wmvc_show_data('idmessage', $item, '-'));?>" title="<?php echo esc_attr__('Remove','wpdirectorykit');?>"><span class="dashicons dashicons-no"></span></a>
                </td>
            </tr>
        <?php endforeach; ?>
        <tfoot>
            <tr>
                <td id="cb" class="manage-column column-cb check-column"><label class="screen-reader-text" for="cb-select-all-1"><?php echo __('Select All', 'wpdirectorykit'); ?></label><input id="cb-select-all-1" type="checkbox"></td>
                <th style="width:50px;"><?php echo __('#ID', 'wpdirectorykit'); ?></th>
                <th><?php echo __('Email From', 'wpdirectorykit'); ?></th>
                <th><?php echo __('To User', 'wpdirectorykit'); ?></th>
                <th><?php echo __('Date', 'wpdirectorykit'); ?></th>
                <th><?php echo __('Message', 'wpdirectorykit'); ?></th>
                <th class="actions_column"><?php echo __('Actions', 'wpdirectorykit'); ?></th>
            </tr>
        </tfoot>
    </table>
    <div class="tablenav bottom">
        <div class="alignleft actions bulkactions">
            <?php wp_nonce_field( 'wdk-messages-bulk', '_wpnonce'); ?>
            <label for="bulk-action-selector-bottom" class="screen-reader-text"><?php echo __('Select bulk action', 'wpdirectorykit'); ?></label>
            <select name="action" id="bulk-action-selector-bottom">
                <option value="-1"><?php echo __('Bulk actions', 'wpdirectorykit'); ?></option>
                <option value="delete" class="hide-if-no-js"><?php echo __('Delete', 'wpdirectorykit'); ?></option>
            </select>
            <input type="hidden" name="page" value="wdk_messages" />
            <input type="submit" id="table_action" class="button action" name="table_action" value="<?php echo esc_attr__('Apply', 'wpdirectorykit'); ?>">
        </div>

        <?php echo wmvc_xss_clean($pagination_output); ?>
        <br class="clear">
    </div>
    </form>
</div>

<script>
    // Generate table
    jQuery(document).ready(function($) {
        $('.question_sure').on('click', function() {
            return confirm("<?php echo esc_js(__('Are you sure? Selected item will be completely removed!', 'wpdirectorykit')); ?>");
        });
    });
</script>

<?php $this->view('general/footer', $data); ?>
```
