%PDF- %PDF-
Direktori : /var/www/swedenbusiness/wp-content/plugins/cf7-mailchimp/templates/ |
Current File : /var/www/swedenbusiness/wp-content/plugins/cf7-mailchimp/templates/settings-table.php |
<?php if ( ! defined( 'ABSPATH' ) ) { exit; } wp_enqueue_script('vx-sorter'); ?><style type="text/css"> .vx_red{ color: #E31230; } .vx_green{ color:rgb(0, 132, 0); } .crm_fields_table input , .crm_fields_table select{ margin: 0px; } .vx_accounts_table .vx_pointer{ cursor: pointer; } .vx_accounts_table .fa-caret-up , .vx_accounts_table .fa-caret-down{ display: none; } .vx_accounts_table th.headerSortUp .fa-caret-down{ display: inline; } .vx_accounts_table th.headerSortDown .fa-caret-up{ display: inline; } </style> <table class="widefat fixed sort striped vx_accounts_table" style="margin: 20px 0 50px 0"> <thead> <tr> <th class="manage-column column-cb vx_pointer" style="width: 30px" ><?php esc_html_e("#",'contact-form-mailchimp-crm'); ?> <i class="fa fa-caret-up"></i><i class="fa fa-caret-down"></i></th> <th class="manage-column vx_pointer"> <?php esc_html_e("Account",'contact-form-mailchimp-crm'); ?> <i class="fa fa-caret-up"></i><i class="fa fa-caret-down"></i></th> <th class="manage-column"> <?php esc_html_e("Status",'contact-form-mailchimp-crm'); ?> </th> <th class="manage-column vx_pointer"> <?php esc_html_e("Created",'contact-form-mailchimp-crm'); ?> <i class="fa fa-caret-up"></i><i class="fa fa-caret-down"></i></th> <th class="manage-column vx_pointer"> <?php esc_html_e("Last Connection",'contact-form-mailchimp-crm'); ?> <i class="fa fa-caret-up"></i><i class="fa fa-caret-down"></i></th> <th class="manage-column"> <?php esc_html_e("Action",'contact-form-mailchimp-crm'); ?> </th> </tr> </thead> <tbody> <?php $nonce=wp_create_nonce("vx_nonce"); if(is_array($accounts) && count($accounts) > 0){ $sno=0; foreach($accounts as $id=>$v){ $sno++; $id=$v['id']; $icon= $v['status'] == "1" ? 'fa-check vx_green' : 'fa-times vx_red'; $icon_title= $v['status'] == "1" ? esc_html__('Connected','contact-form-mailchimp-crm') : esc_html__('Disconnected','contact-form-mailchimp-crm'); ?> <tr> <td><?php echo esc_attr($id) ?></td> <td> <?php echo esc_html($v['name']) ?></td> <td> <i class="fa <?php echo esc_attr($icon) ?>" title="<?php echo esc_attr($icon_title) ?>"></i> </td> <td> <?php echo date('M-d-Y H:i:s', strtotime($v['time'])+$offset); ?> </td> <td> <?php echo date('M-d-Y H:i:s', strtotime($v['updated'])+$offset); ?> </td> <td><span class="row-actions visible"> <a href="<?php echo esc_url($page_link."&id=".$id); ?>"><?php if($v['status'] == "1"){ _e('View','contact-form-mailchimp-crm'); }else{ _e('Edit','contact-form-mailchimp-crm'); } ?></a> | <span class="delete"><a href="<?php echo esc_url($page_link.'&'.$this->id.'_tab_action=del_account&id='.$id.'&vx_nonce='.$nonce) ?>" class="vx_del_account" > <?php esc_html_e("Delete",'contact-form-mailchimp-crm'); ?> </a></span></span> </td> </tr> <?php } }else{ ?> <tr><td colspan="6"><p><?php echo sprintf(esc_html__("No Mailchimp Account Found. %sAdd New Account%s",'contact-form-mailchimp-crm'),'<a href="'.esc_url($new_account).'">','</a>'); ?></p></td></tr> <?php } ?> </tbody> <tfoot> <tr> <th class="manage-column column-cb" style="width: 30px" ><?php esc_html_e("#",'contact-form-mailchimp-crm'); ?></th> <th class="manage-column"> <?php esc_html_e("Account",'contact-form-mailchimp-crm'); ?> </th> <th class="manage-column"> <?php esc_html_e("Status",'contact-form-mailchimp-crm'); ?> </th> <th class="manage-column"> <?php esc_html_e("Created",'contact-form-mailchimp-crm'); ?> </th> <th class="manage-column"> <?php esc_html_e("Last Connection",'contact-form-mailchimp-crm'); ?> </th> <th class="manage-column"> <?php esc_html_e("Action",'contact-form-mailchimp-crm'); ?> </th> </tr> </tfoot> </table> <script> jQuery(document).ready(function($){ $('.vx_accounts_table').tablesorter( {headers: { 2:{sorter: false}, 5:{sorter: false}}} ); $(".vx_del_account").click(function(e){ if(!confirm('<?php esc_html_e('Are you sure to delete Account ?','contact-form-mailchimp-crm') ?>')){ e.preventDefault(); } }) }) </script>