Ejemplo n.º 1
0
function shipme_theme_my_account_pm_new()
{
    ob_start();
    global $current_user;
    get_currentuserinfo();
    $uid = $current_user->ID;
    global $wpdb, $wp_rewrite, $wp_query;
    $third_page = $wp_query->query_vars['pg'];
    if (empty($third_page)) {
        $third_page = 'home';
    }
    ?>
<div class="container_ship_ttl_wrap">	
    <div class="container_ship_ttl">
        <div class="my-page-title col-xs-12 col-sm-12 col-lg-12">
            <?php 
    _e('Private Messages', 'shipme');
    ?>
        </div>
    
        <?php 
    if (function_exists('bcn_display')) {
        echo '<div class="my_box3 no_padding  breadcrumb-wrap col-xs-12 col-sm-12 col-lg-12"><div class="padd10">';
        bcn_display();
        echo '</div></div>';
    }
    ?>
	
    
    </div>
</div>

<?php 
    do_action('shipme_account_at_top');
    ?>

<div class="container_ship_no_bk">

<?php 
    echo shipme_get_users_links();
    ?>

<div class="account-content-area col-xs-12 col-sm-8 col-lg-9">

		<ul class="virtual_sidebar">
			
			<li class="widget-container widget_text">
                <div class="my-only-widget-content">
             			 <ul class="cms_cms"> 
                            <li><a href="<?php 
    echo shipme_get_priv_mess_page_url();
    ?>
" class="green_btn"><?php 
    _e("Messaging Home", "shipme");
    ?>
</a></li>
                           <li> <a href="<?php 
    echo shipme_get_priv_mess_page_url('send');
    ?>
" class="green_btn"><?php 
    _e("Send New Message", "shipme");
    ?>
</a></li>
                            <li><a href="<?php 
    echo shipme_get_priv_mess_page_url('inbox');
    ?>
" class="green_btn"><?php 
    _e("Inbox", "shipme");
    global $current_user;
    get_currentuserinfo();
    $rd = shipme_get_unread_number_messages($current_user->ID);
    if ($rd > 0) {
        echo ' (' . $rd . ')';
    }
    ?>
</a></li>
                            <li><a href="<?php 
    echo shipme_get_priv_mess_page_url('sent-items');
    ?>
" class="green_btn"><?php 
    _e("Sent Items", "shipme");
    ?>
</a></li>
                            
                        </ul>
                </div>
			</li>
            
            
            
            
               <?php 
    if ($third_page == 'home') {
        global $current_user;
        get_currentuserinfo();
        $myuid = $current_user->ID;
        ?>
   
            	<li class="widget-container widget_text">
            	
            	<h3 class="widget-title"><?php 
        _e("Latest Received Messages", "shipme");
        ?>
</h3>
                <div class="my-only-widget-content">  
                <?php 
        global $wpdb;
        $uidsss = $current_user->ID;
        $s = "select * from " . $wpdb->prefix . "shipme_pm where user='******'  AND show_to_destination='1' and approved='1'  order by id desc limit 4";
        $r = $wpdb->get_results($s);
        if (count($r) > 0) {
            echo '<table width="100%">';
            echo '<tr>';
            echo '<td>' . __('From User', 'shipme') . '</td>';
            echo '<td>' . __('Subject', 'shipme') . '</td>';
            echo '<td>' . __('Date', 'shipme') . '</td>';
            echo '<td>' . __('Options', 'shipme') . '</td>';
            echo '</tr>';
            foreach ($r as $row) {
                if ($row->rd == 0) {
                    $cls = 'bold_stuff';
                } else {
                    $cls = '';
                }
                $user = get_userdata($row->initiator);
                echo '<tr>';
                echo '<td class="' . $cls . '"><a href="' . get_bloginfo('siteurl') . '/?p_action=user_profile&post_author=' . $user->ID . '">' . $user->user_login . '</a></td>';
                echo '<td class="' . $cls . '">' . $row->subject . '</td>';
                echo '<td class="' . $cls . '">' . date_i18n('d-M-Y H:i:s', $row->datemade) . '</td>';
                echo '<td><a href="' . shipme_get_priv_mess_page_url('read-message', $row->id) . '">' . __('Read', 'shipme') . '</a> | 
						<a href="' . shipme_get_priv_mess_page_url('delete-message', $row->id) . '">' . __('Delete', 'shipme') . '</a></td>';
                echo '</tr>';
            }
            echo '</table>';
        } else {
            _e('No messages here.', 'shipme');
        }
        ?>
      
            
                </div>
                </li>
            
            <!--#######-->
          
            
             <li class="widget-container widget_text">
            	
            
            	<h3 class="widget-title"><?php 
        _e("Latest Sent Items", "shipme");
        ?>
</h3>
                <div class="my-only-widget-content">  
                <?php 
        global $wpdb;
        $uidss = $current_user->ID;
        $s = "select * from " . $wpdb->prefix . "shipme_pm where initiator='{$uidss}'  AND show_to_source='1' order by id desc limit 4";
        $r = $wpdb->get_results($s);
        if (count($r) > 0) {
            echo '<table width="100%">';
            echo '<tr>';
            echo '<td>' . __('To User', 'shipme') . '</td>';
            echo '<td>' . __('Subject', 'shipme') . '</td>';
            echo '<td>' . __('Date', 'shipme') . '</td>';
            echo '<td>' . __('Options', 'shipme') . '</td>';
            echo '</tr>';
            foreach ($r as $row) {
                //if($row->rd == 0) $cls = 'bold_stuff';
                //else
                $cls = '';
                $user = get_userdata($row->user);
                echo '<tr>';
                echo '<td class="' . $cls . '"><a href="' . shipme_get_user_profile_link($row->user) . '">' . $user->user_login . '</a></td>';
                echo '<td class="' . $cls . '">' . $row->subject . '</td>';
                echo '<td class="' . $cls . '">' . date_i18n('d-M-Y H:i:s', $row->datemade) . '</td>';
                echo '<td><a href="' . shipme_get_priv_mess_page_url('read-message', $row->id) . '">' . __('Read', 'shipme') . '</a> | 
						<a href="' . shipme_get_priv_mess_page_url('delete-message', $row->id) . '">' . __('Delete', 'shipme') . '</a></td>';
                echo '</tr>';
            }
            echo '</table>';
        } else {
            _e('No messages here.', 'shipme');
        }
        ?>
      
               
                </div>
                </li>
            
            
		<!-- page content here -->	
			
        <?php 
    } elseif ($third_page == 'inbox') {
        global $current_user;
        get_currentuserinfo();
        $myuid = $current_user->ID;
        //echo $myuid;
        ?>
        
        
          	<li class="widget-container widget_text">
           
            
            	<h3 class="widget-title"><?php 
        _e("Private Messages: Inbox", "shipme");
        ?>
</h3>
                <div class="my-only-widget-content">  
                <?php 
        global $wpdb;
        $page_rows = 20;
        $page_rows = apply_filters('shipme_nr_of_messages_priv_pagination', $page_rows);
        $pagenum = isset($_GET['pagenum']) ? $_GET['pagenum'] : 1;
        $max = ' limit ' . ($pagenum - 1) * $page_rows . ',' . $page_rows;
        $s = "select count(id) tots from " . $wpdb->prefix . "shipme_pm where user='******' AND show_to_destination='1' and approved='1'";
        $r = $wpdb->get_results($s);
        $total = $r[0]->tots;
        $last = ceil($total / $page_rows);
        //-------------------------
        $s = "select * from " . $wpdb->prefix . "shipme_pm where user='******' AND show_to_destination='1' and approved='1' order by id desc " . $max;
        $r = $wpdb->get_results($s);
        if (count($r) > 0) {
            ?>
                    
                    <script>
					
					$(document).ready(function() {
						//set initial state.
					 
					
						$('#select_all_stuff').change(function() {
							if($(this).is(":checked")) {
								
								$('.message_select_bx').attr("checked", true);
							}
							else
							{
								$('.message_select_bx').attr("checked", false);	
							}
						});
					});
											
					
					</script>
                    
                    <?php 
            echo '<form method="post" action="' . shipme_get_priv_mess_page_url('delete-message', '', '&return=inbox') . '">';
            echo '<table width="100%">';
            echo '<tr>';
            echo '<td><input type="checkbox" name="" id="select_all_stuff" value="1" /> ' . __('Select All', 'shipme') . ' </td>';
            echo '<td>' . __('From User', 'shipme') . '</td>';
            echo '<td>' . __('Subject', 'shipme') . '</td>';
            echo '<td>' . __('Date', 'shipme') . '</td>';
            echo '<td>' . __('Options', 'shipme') . '</td>';
            echo '</tr>';
            foreach ($r as $row) {
                if ($row->rd == 0) {
                    $cls = 'bold_stuff';
                } else {
                    $cls = '';
                }
                $user = get_userdata($row->initiator);
                echo '<tr>';
                echo '<td><input type="checkbox" class="message_select_bx" name="message_ids[]" value="' . $row->id . '" /></td>';
                echo '<td class="' . $cls . '"><a href="' . get_bloginfo('siteurl') . '/?p_action=user_profile&post_author=' . $user->ID . '">' . $user->user_login . '</a></td>';
                echo '<td class="' . $cls . '">' . substr($row->subject, 0, 30) . '</td>';
                echo '<td class="' . $cls . '">' . date_i18n('d-M-Y H:i:s', $row->datemade) . '</td>';
                echo '<td><a href="' . shipme_get_priv_mess_page_url('read-message', $row->id) . '">' . __('Read', 'shipme') . '</a> | 
						<a href="' . shipme_get_priv_mess_page_url('delete-message', $row->id) . '">' . __('Delete', 'shipme') . '</a></td>';
                echo '</tr>';
            }
            echo '<tr><td colspan="5"><input type="submit" value="' . __('Delete Selected', 'shipme') . '" name="delete_sel" /></td></tr>';
            echo '<tr><td colspan="5">  ';
            echo shipme_get_my_pagination_main(get_bloginfo('siteurl') . "/?page_id=" . get_option('shipme_my_account_private_messages_id'), $pagenum, 'pagenum', $last, '&pg=inbox');
            echo ' </td></tr>';
            echo '</table></form>';
        } else {
            _e('No messages here.', 'shipme');
        }
        ?>
      
             
                </div>
                </li>
            
            
		<!-- page content here -->	
			
        <?php 
    } elseif ($third_page == 'sent-items') {
        global $current_user;
        get_currentuserinfo();
        $myuid = $current_user->ID;
        ?>
        
        		<script>
					
					$(document).ready(function() {
						//set initial state.
					 
					
						$('#select_all_stuff').change(function() {
							if($(this).is(":checked")) {
								
								$('.message_select_bx').attr("checked", true);
							}
							else
							{
								$('.message_select_bx').attr("checked", false);	
							}
						});
					});
											
					
					</script>
		<!-- page content here -->	
			
            
            	<li class="widget-container widget_text">
           
            
            	<h3 class="widget-title"> <?php 
        _e("Private Messages: Sent Items", "shipme");
        ?>
</h3>
                <div class="my-only-widget-content">  
                <?php 
        global $wpdb;
        $page_rows = 20;
        $page_rows = apply_filters('shipme_nr_of_messages_priv_pagination', $page_rows);
        $pagenum = isset($_GET['pagenum']) ? $_GET['pagenum'] : 1;
        $max = ' limit ' . ($pagenum - 1) * $page_rows . ',' . $page_rows;
        //---------------------------------
        $s = "select count(id) tots from " . $wpdb->prefix . "shipme_pm where initiator='{$myuid}' AND show_to_source='1' and approved='1'";
        $r = $wpdb->get_results($s);
        $total = $r[0]->tots;
        $last = ceil($total / $page_rows);
        //---------------------------------
        $s = "select * from " . $wpdb->prefix . "shipme_pm where initiator='{$myuid}' AND show_to_source='1' and approved='1' order by id desc " . $max;
        $r = $wpdb->get_results($s);
        if (count($r) > 0) {
            echo '<form method="post" action="' . shipme_get_priv_mess_page_url('delete-message', '', '&return=outbox') . '">';
            echo '<table width="100%">';
            echo '<tr>';
            echo '<td><input type="checkbox" name="" id="select_all_stuff" value="1" /> ' . __('Select All', 'shipme') . ' </td>';
            echo '<td>' . __('To User', 'shipme') . '</td>';
            echo '<td>' . __('Subject', 'shipme') . '</td>';
            echo '<td>' . __('Date', 'shipme') . '</td>';
            echo '<td>' . __('Options', 'shipme') . '</td>';
            echo '</tr>';
            foreach ($r as $row) {
                //if($row->rd == 0) $cls = 'bold_stuff';
                //else
                $cls = '';
                $user = get_userdata($row->user);
                echo '<tr>';
                echo '<td><input type="checkbox" class="message_select_bx" name="message_ids[]" value="' . $row->id . '" /></td>';
                echo '<td class="' . $cls . '"><a href="' . shipme_get_user_profile_link($row->user) . '">' . $user->user_login . '</a></td>';
                echo '<td class="' . $cls . '">' . substr($row->subject, 0, 30) . '</td>';
                echo '<td class="' . $cls . '">' . date_i18n('d-M-Y H:i:s', $row->datemade) . '</td>';
                echo '<td><a href="' . shipme_get_priv_mess_page_url('read-message', $row->id) . '">' . __('Read', 'shipme') . '</a> | 
						<a href="' . shipme_get_priv_mess_page_url('delete-message', $row->id) . '">' . __('Delete', 'shipme') . '</a></td>';
                echo '</tr>';
            }
            echo '<tr><td colspan="5"><input type="submit" value="' . __('Delete Selected', 'shipme') . '" name="delete_sel" /></td></tr>';
            echo '<tr><td colspan="5">  ';
            echo shipme_get_my_pagination_main(get_bloginfo('siteurl') . "/?page_id=" . get_option('shipme_my_account_private_messages_id'), $pagenum, 'pagenum', $last, '&pg=sent-items');
            echo ' </td></tr>';
            echo '</table></form>';
        } else {
            _e('No messages here.', 'shipme');
        }
        ?>
      
                </div>
                </li>
        
            
            
		<!-- page content here -->	
			
        <?php 
    } elseif ($third_page == 'delete-message') {
        $id = $_GET['id'];
        $s = "select * from " . $wpdb->prefix . "shipme_pm where id='{$id}' AND (user='******' OR initiator='{$myuid}')";
        $r = $wpdb->get_results($s);
        $row = $r[0];
        global $current_user;
        get_currentuserinfo();
        $myuid = $current_user->ID;
        if ($myuid == $row->initiator) {
            $owner = true;
        } else {
            $owner = false;
        }
        //if(!$owner)
        //$wpdb->query("update_i18n ".$wpdb->prefix."auction_pm set rd='1' where id='{$row->id}'");
        ?>
        
        
		<!-- page content here -->	
			
            
            	<li class="widget-container widget_text">
         
            
            	<h3 class="widget-title"><?php 
        if (isset($_POST['delete_sel'])) {
            _e("Delete Multiple Messages: ", "shipme");
        } else {
            _e("Delete Message: ", "shipme");
            echo " " . $row->subject;
        }
        ?>
</h3>
                <div class="my-only-widget-content">  
                
                <?php 
        if (isset($_POST['message_ids'])) {
            $message_ids2 = $_POST['message_ids'];
            foreach ($message_ids2 as $message_id) {
                $ss1 = "select * from " . $wpdb->prefix . "shipme_pm where id='{$message_id}'";
                $rr1 = $wpdb->get_results($ss1);
                $rrow1 = $rr1[0];
                echo '#' . $rrow1->id . " " . $rrow1->subject . '<br/>';
            }
            echo '<br/>';
        }
        ?>
                
                <?php 
        //echo $row->content;
        ?>
      <br/> <br/>
      
      <?php 
        if (1) {
            //$owner == false):
            if (isset($_POST['delete_sel'])) {
                $message_ids = $_POST['message_ids'];
                if (count($message_ids) == 0) {
                    _e("No messsages selected.", "shipme");
                } else {
                    $attash = '';
                    foreach ($message_ids as $message_id) {
                        $attash .= '&message_id[]=' . $message_id;
                    }
                    ?>
					
                   <a href="<?php 
                    echo $_GET['rdr'];
                    ?>
" class="nice_link"><?php 
                    _e("Cancel", 'shipme');
                    ?>
</a>
                    
                    <a href="<?php 
                    echo shipme_get_priv_mess_page_url('delete-message', '', '&confirm_message_deletion=yes&return=' . urlencode($_GET['rdr'])) . $attash;
                    ?>
" 
       				class="nice_link"><?php 
                    _e("Confirm Deletion", 'shipme');
                    ?>
</a>
                
                <?php 
                }
            } else {
                ?>
      
      <a href="<?php 
                echo $_GET['rdr'];
                ?>
" class="nice_link"><?php 
                _e("Cancel", 'shipme');
                ?>
</a>
      
       <a href="<?php 
                echo shipme_get_priv_mess_page_url('delete-message', $row->id, '&confirm_message_deletion=yes&return=' . urlencode($_GET['rdr']));
                ?>
" 
       class="nice_link"><?php 
                _e("Confirm Deletion", 'shipme');
                ?>
</a> <?php 
            }
        }
        ?>
                
                </div>
                </li>
            
            
		<!-- page content here -->	
			
        <?php 
    } elseif ($third_page == 'read-message') {
        global $current_user, $wpdb;
        get_currentuserinfo();
        $myuid = $current_user->ID;
        $id = $_GET['id'];
        $s = "select * from " . $wpdb->prefix . "shipme_pm where id='{$id}'  AND (user='******' OR initiator='{$myuid}')";
        $r = $wpdb->get_results($s);
        $row = $r[0];
        if ($myuid == $row->initiator) {
            $owner = true;
        } else {
            $owner = false;
        }
        if (!$owner) {
            $wpdb->query("update " . $wpdb->prefix . "shipme_pm set rd='1' where id='{$row->id}'");
        }
        ?>
        
        
		<!-- page content here -->	
			
            
            	<li class="widget-container widget_text">
           
            
            	<h3 class="widget-title"><?php 
        _e("Read Message: ", "shipme");
        echo " " . $row->subject;
        ?>
</h3>
                <div class="my-only-widget-content">  
                <?php 
        echo $row->content;
        ?>
      <br/> <br/>
      
      <?php 
        if (!empty($row->file_attached)) {
            echo sprintf(__('File Attached: %s', 'shipme'), '<a href="' . wp_get_attachment_url($row->file_attached) . '">' . wp_get_attachment_url($row->file_attached) . "</a>");
        }
        ?>
      
      
      <?php 
        if ($owner == false) {
            ?>
       <a href="<?php 
            echo shipme_get_priv_mess_page_url('send', '', '&pid=' . $row->pid . '&uid=' . $row->initiator . '&in_reply_to=' . $row->id);
            ?>
" class="nice_link"><?php 
            _e("Reply", 'shipme');
            ?>
</a> <?php 
        }
        ?>
                </div>
                </li>
             
            
		<!-- page content here -->	
			
        <?php 
    } elseif ($third_page == 'send') {
        ?>
        <?php 
        $pid = $_GET['pid'];
        $uid = $_GET['uid'];
        $user = get_userdata($uid);
        if (!empty($pid)) {
            $post = get_post($pid);
            $subject = "RE: " . $post->post_title;
        } elseif (!empty($_GET['in_reply_to'])) {
            global $wpdb;
            $ssp = "select * from " . $wpdb->prefix . "shipme_pm where id='" . $_GET['in_reply_to'] . "'";
            $sspq = $wpdb->get_results($ssp);
            if (strpos($sspq[0]->subject, 'RE:') !== false) {
                $subject = $sspq[0]->subject;
            } else {
                $subject = "RE: " . $sspq[0]->subject;
            }
        }
        if (isset($_POST['send_a'])) {
            require_once ABSPATH . "wp-admin" . '/includes/file.php';
            require_once ABSPATH . "wp-admin" . '/includes/image.php';
            if (!empty($_FILES['file_instant']['name'])) {
                $pids = 0;
                $upload_overrides = array('test_form' => false);
                $uploaded_file = wp_handle_upload($_FILES['file_instant'], $upload_overrides);
                $file_name_and_location = $uploaded_file['file'];
                $file_title_for_media_library = $_FILES['file_instant']['name'];
                $arr_file_type = wp_check_filetype(basename($_FILES['file_instant']['name']));
                $uploaded_file_type = $arr_file_type['type'];
                if ($uploaded_file_type == "application/zip" or $uploaded_file_type == "application/pdf" or $uploaded_file_type == "application/msword" or $uploaded_file_type == "application/msexcel" or $uploaded_file_type == "application/doc" or $uploaded_file_type == "application/docx" or $uploaded_file_type == "application/xls" or $uploaded_file_type == "application/xlsx" or $uploaded_file_type == "application/csv" or $uploaded_file_type == "application/ppt" or $uploaded_file_type == "application/pptx" or $uploaded_file_type == "application/vnd.ms-excel" or $uploaded_file_type == "application/vnd.ms-powerpoint" or $uploaded_file_type == "application/vnd.openxmlformats-officedocument.presentationml.presentation" or $uploaded_file_type == "application/octet-stream" or $uploaded_file_type == "image/png" or $uploaded_file_type == "image/jpg" or $uploaded_file_type == "image/jpeg" or $uploaded_file_type == "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet" or $uploaded_file_type == "application/vnd.openxmlformats-officedocument.wordprocessingml.document") {
                    $attachment = array('post_mime_type' => $uploaded_file_type, 'post_title' => 'Uploaded ZIP ' . addslashes($file_title_for_media_library), 'post_content' => '', 'post_status' => 'inherit', 'post_parent' => 0, 'post_author' => $uid);
                    $attach_id = wp_insert_attachment($attachment, $file_name_and_location, $pids);
                    $attach_data = wp_generate_attachment_metadata($attach_id, $file_name_and_location);
                    wp_update_attachment_metadata($attach_id, $attach_data);
                } else {
                    $error_mm = '1';
                }
            }
            $subject = $_POST['subject_a'];
            $message = $_POST['message_a'];
            $uids = $_POST['to_a'];
            if (isset($_POST['projectss'])) {
                if (!empty($_POST['projectss'])) {
                    $uids = $_POST['projectss'];
                }
            }
            if (!empty($_POST['to_as'])) {
                global $current_user;
                get_currentuserinfo();
                $uids = shipme_get_userid_from_username($_POST['to_as']);
                if ($uids == $current_user->ID) {
                    $uids = false;
                    $error_mm = 1;
                    $cant_send = 1;
                }
            }
            if (empty($uids)) {
                $uids = $_GET['uid'];
            }
            if ($uids != false and $error_mm != "1") {
                global $current_user;
                get_currentuserinfo();
                $myuid = $current_user->ID;
                //echo $message;
                //*********************************************
                $shipme_moderate_private_messages = get_option('shipme_moderate_private_messages');
                if ($shipme_moderate_private_messages == "yes") {
                    $shipme_moderate_private_messages = true;
                } else {
                    $shipme_moderate_private_messages = false;
                }
                //--------------------------
                if ($shipme_moderate_private_messages == true) {
                    $approved = '0';
                    $show_to_destination = '0';
                } else {
                    $approved = '1';
                    $show_to_destination = '1';
                }
                //*********************************************
                global $wpdb;
                $wpdb->show_errors = true;
                $tm = $_POST['tm'];
                //current_time('timestamp',0);
                $sr = "select * from " . $wpdb->prefix . "shipme_pm where initiator='{$myuid}' and user='******' and datemade='{$tm}'";
                $rr = $wpdb->get_results($sr);
                if (count($rr) == 0) {
                    if (empty($pid)) {
                        $pid = 0;
                    }
                    $s = "insert into " . $wpdb->prefix . "shipme_pm \n\t\t\t\t\t(approved, subject, content, datemade, pid, initiator, user, file_attached, show_to_destination) \n\t\t\t\t\tvalues('{$approved}','{$subject}','{$message}','{$tm}','{$pid}','{$myuid}','{$uids}', '{$attach_id}', '{$show_to_destination}')";
                    $wpdb->query($s);
                    //echo $s;
                    //echo $wpdb->last_error;
                    //-----------------------
                    $user = get_userdata($uid);
                    if ($shipme_moderate_private_messages == false) {
                        shipme_send_email_on_priv_mess_received($myuid, $uids);
                    } else {
                        //send message to admin to moderate
                    }
                }
                //-----------------------
                ?>
                
                <li class="widget-container widget_text">
        
                 <?php 
                if ($shipme_moderate_private_messages == false) {
                    _e('Your message has been sent.', 'shipme');
                } else {
                    _e('Your message has been sent but the receiver will receive it only after moderation.', 'shipme');
                }
                ?>
              
                </li>
                
                <?php 
            } else {
                if ($error_mm == "1") {
                    if ($cant_send == 1) {
                        echo __('You cannot send a message to yourself.', 'shipme');
                    } else {
                        echo sprintf(__('Wrong File format: %s', 'shipme'), $uploaded_file_type);
                    }
                } else {
                    echo '<div class="error">';
                    _e('ERROR! wrong username provided.', 'shipme');
                    echo '</div>';
                }
            }
        } else {
            ?>
   
             
        <li class="widget-container widget_text">
            	
            
            	<h3 class="widget-title"><?php 
            _e("Send Private Message to: ", "shipme");
            ?>
 <?php 
            echo $user->user_login;
            ?>
</h3>
                <div class="my-only-widget-content">  
                <form method="post" enctype="multipart/form-data">
                <input type="hidden" name="tm" value="<?php 
            echo current_time('timestamp', 0);
            ?>
" />
                <ul class="post-new3">
                <?php 
            if (empty($uid)) {
                $rtt = shipme_get_my_awarded_projects2($current_user->ID);
                ?>
                <li>
                <h2><?php 
                _e("Send To", "shipme");
                ?>
:</h2>
                <h2><input size="20" name="to_as" class="do_input" type="text" value="" /> <?php 
                if ($rtt) {
                    _e('or', 'shipme');
                    echo " " . $rtt;
                }
                ?>
</h2>
                </li>
                <?php 
            }
            ?>
                
                <li>
                <h2><?php 
            _e("Subject", "shipme");
            ?>
:</td>
                <h2><input size="50" name="subject_a" class="do_input" type="text" value="<?php 
            echo $subject;
            ?>
" /></h2>
                </li>
                
                 <script>
			
			jQuery(document).ready(function(){
			tinyMCE.init({
					mode : "specific_textareas",
					theme : "modern", 
					/*plugins : "autolink, lists, spellchecker, style, layer, table, advhr, advimage, advlink, emotions, iespell, inlinepopups, insertdatetime, preview, media, searchreplace, print, contextmenu, paste, directionality, fullscreen, noneditable, visualchars, nonbreaking, xhtmlxtras, template",*/
					editor_selector :"tinymce-enabled"
				});
			});
						
			</script>
                
                <li>
                <h2><?php 
            _e("Message", "shipme");
            ?>
:</h2>
                <p><textarea name="message_a" class="tinymce-enabled do_input" rows="6" cols="50"></textarea></td>
                </li>
                
                
                <li>
                <h2><?php 
            _e("Attach File", "shipme");
            ?>
:</h2>
                <p><input type="file" class="do_input" name="file_instant" class="" /> <?php 
            _e('Only PDF, ZIP, Office files and Images.', 'shipme');
            ?>
</p>
                </li>
                
                
   
                
                 <li>
                <h2>&nbsp;</h2>
                <p><input name="send_a" class="submit_bottom2" type="submit" value="<?php 
            _e("Send Message", 'shipme');
            ?>
" /></p>
                </li>
                
                </ul>
      			</form>
                
                </div>
                </li>
             
        
        <?php 
        }
    }
    ?>
            
			</ul>
        
        

</div>



</div>

    
<?php 
    $output = ob_get_contents();
    ob_end_clean();
    return $output;
}
Ejemplo n.º 2
0
        echo '<th><img class="img_class" src="' . shipme_get_first_post_image($row->pid, 42, 42) . '" 
                                alt="' . $post->post_title . '" width="42" /></th>';
        echo '<th><a href="' . get_permalink($row->pid) . '">' . $post->post_title . '</a></th>';
        echo '<th><a href="' . shipme_get_user_profile_link($user->ID) . '">' . $user->user_login . '</a></th>';
        echo '<th>' . date_i18n('d-M-Y H:i:s', $dts) . '</th>';
        echo '<th>' . shipme_get_show_price($bid->bid) . '</th>';
        echo '<th>' . shipme_get_project_stars(floor($row->grade / 2)) . ' (' . floor($row->grade / 2) . '/5)</th>';
        echo '</tr>';
        echo '<tr>';
        echo '<th></th>';
        echo '<th colspan="5"><b>' . __('Comment', 'shipme') . ':</b> ' . $row->comment . '</th>';
        echo '</tr>';
        echo '<tr><th colspan="6"><hr color="#eee" /></th></tr>';
    }
    echo '<tr>';
    echo '<th colspan="6">' . shipme_get_my_pagination_main(get_bloginfo('siteurl') . "/?p_action=user_feedback&post_author=" . $uid, $pagenum, 'pagenum', $last) . '</th>';
    echo '</tr>';
    echo '</table>';
} else {
    _e("This user has no reviews yet.", "shipme");
}
?>
                
                
				<!-- ####### -->
                </div>
                
            </div>
            </div>