Subversion Repositories cheapmusic

Rev

Blame | Last modification | View Log | RSS feed

<?php echo showSectionHead($spTextTools['Keyword Search Reports']); ?>
<form id='search_form'>
<table width="100%" class="search">
        <tr>
                <th><?php echo $spText['common']['Website']?>: </th>
                <td>
                        <select name="website_id" id="website_id" onchange="doLoad('website_id', 'webmaster-tools.php', 'keyword_area', 'sec=keywordbox')">
                                <?php foreach($websiteList as $websiteInfo){?>
                                        <?php if($websiteInfo['id'] == $websiteId){?>
                                                <option value="<?php echo $websiteInfo['id']?>" selected><?php echo $websiteInfo['name']?></option>
                                        <?php }else{?>
                                                <option value="<?php echo $websiteInfo['id']?>"><?php echo $websiteInfo['name']?></option>
                                        <?php }?>
                                <?php }?>
                        </select>
                </td>
                <th><?php echo $spText['common']['Period']?>:</th>
                <td>
                        <input type="text" value="<?php echo $fromTime?>" name="from_time"/> 
                        <input type="text" value="<?php echo $toTime?>" name="to_time"/>
                        <script type="text/javascript">
                        $(function() {
                                $( "input[name='from_time'], input[name='to_time']").datepicker({dateFormat: "yy-mm-dd"});
                        });
                        </script>
                </td>
        </tr>
        <tr>
                <th><?php echo $spText['common']['Keyword']?>: </th>
                <td id="keyword_area">
                        <?php echo $this->render('keyword/keywordselectbox', 'ajax'); ?>
                </td>
                <td colspan="2">
                        <a href="javascript:void(0);" onclick="scriptDoLoadPost('webmaster-tools.php', 'search_form', 'content', '&sec=viewKeywordSearchReports')" class="actionbut"><?php echo $spText['button']['Show Records']?></a>
                </td>
        </tr>
</table>
</form>

<?php
if(empty($keywordId)){
        ?>
        <p class='note error'><?php echo $spText['common']['No Keywords Found']?>!</p>
        <?php
        exit;
}
?>
<br><br>
<div id='subcontent'>
<table id="cust_tab">   
        <tr>
                <th><?php echo $spText['common']['Date']?></th>
                <th><?php echo $spText['label']['Clicks']?></th>
                <th><?php echo $spText['label']['Impressions']?></th>
                <th><?php echo "CTR"?></th>
                <th><?php echo $spTextWB['Average Position']?></th>
        </tr>
        <?php
        foreach($list as $listInfo){            
                ?>
                <tr>
                        <td><?php echo $listInfo['report_date']; ?></td>
                        <td><b><?php echo $listInfo['clicks'].'</b> '. $listInfo['rank_diff_clicks']?></td>
                        <td><b><?php echo $listInfo['impressions'].'</b> '. $listInfo['rank_diff_impressions']?></td>
                        <td><b><?php echo $listInfo['ctr'].'</b> '. $listInfo['rank_diff_ctr']?></td>
                        <td><b><?php echo $listInfo['average_position'].'</b> '. $listInfo['rank_diff_average_position']?></td>
                </tr>
                <?php   
        } 
        ?>
</table>
</div>