Subversion Repositories cheapmusic

Rev

Blame | Last modification | View Log | RSS feed

<?php echo showSectionHead($spTextKeyword['Detailed Keyword Position 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', 'keywords.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']['Keyword']?>: </th>
                <td id="keyword_area" colspan='3'>
                        <?php echo $this->render('keyword/keywordselectbox', 'ajax'); ?>
                </td>
        </tr>
        <tr>
                <th><?php echo $spText['common']['Period']?>:</th>
                <td>
                        <input type="text" value="<?php echo $fromTime?>" name="from_time" id="from_time"/>
                        <input type="text" value="<?php echo $toTime?>" name="to_time" id="to_time"/>
                        <script>
                          $( function() {
                            $( "#from_time, #to_time").datepicker({dateFormat: "yy-mm-dd"});
                          } );
                        </script>
                </td>           
                <th><?php echo $spText['common']['Search Engine']?>: </th>
                <td>
                        <?php echo $this->render('searchengine/seselectbox', 'ajax'); ?>
                </td>
                <td colspan="2"><a href="javascript:void(0);" onclick="scriptDoLoadPost('reports.php', 'search_form', 'content')" 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;
        } 
?>

<div id='subcontent'>
<table width="100%" class="list">
        <tr class="listHead">
                <td class="left"><?php echo $spText['common']['Date']?></td>
                <td><?php echo $seInfo['domain']?> <?php echo $spText['common']['Results']?></td>
                <td class="right"><?php echo $spText['common']['Rank']?></td>
        </tr>
        <?php
        $colCount = 3; 
        if(count($list) > 0){
                $catCount = count($list);
                $i = 0;
                foreach($list as $listInfo){
                        
                        $class = ($i % 2) ? "blue_row" : "white_row";
            if($catCount == ($i + 1)){
                $leftBotClass = "tab_left_bot";
                $rightBotClass = "tab_right_bot";
            }else{
                $leftBotClass = "td_left_border td_br_right";
                $rightBotClass = "td_br_right";
            }
            $scriptLink = "sec=show-info&keyId={$listInfo['keyword_id']}&time={$listInfo['time']}&seId=$seId";
            $dateLink = scriptAJAXLinkHref('reports.php', 'subcontent', $scriptLink, date('Y-m-d', $listInfo['time']) );
                        ?>
                        <tr class="<?php echo $class?>">
                                <td class="<?php echo $leftBotClass?>" width='100px;'><?php echo $dateLink; ?></td>
                                <td class='td_br_right' id='seresult'>
                                        <a href='<?php echo $listInfo['url']?>' target='_blank'><?php echo stripslashes($listInfo['title']);?></a>
                                        <p><?php echo stripslashes($listInfo['description']);?><p>
                                        <label><?php echo $listInfo['url']?></label>
                                </td>
                                <td class="<?php echo $rightBotClass?>" width="100px" style='text-align:left;'><b><?php echo $listInfo['rank'].'</b> '. $listInfo['rank_diff']?></td>
                        </tr>
                        <?php
                        $i++;
                }
        }else{
                echo showNoRecordsList($colCount-2);
        } 
        ?>
        <tr class="listBot">
                <td class="left" colspan="<?php echo ($colCount-1)?>"></td>
                <td class="right"></td>
        </tr>
</table>
</div>