Blame | Last modification | View Log | RSS feed
<?php$borderCollapseVal = $pdfVersion ? "border-collapse: collapse;" : "";if(!$summaryPage && (!empty($printVersion) || !empty($pdfVersion))) {$pdfVersion ? showPdfHeader($spTextTools['Keyword Search Summary']) : showPrintHeader($spTextTools['Keyword Search Summary']);?><table width="80%" class="search"><?php if (!empty($websiteInfo['url'])) {?><tr><th><?php echo $spText['common']['Website']?>:</th><td><?php echo $websiteInfo['url']; ?></td></tr><?php }?><tr><th><?php echo $spText['common']['Period']?>:</th><td><?php echo $fromTime?> - <?php echo $toTime?></td></tr></table><?php} else {echo showSectionHead($spTextTools['Website Search Summary']);// if not summary page show the filtersif(!$summaryPage) {$scriptName = "webmaster-tools.php";?><form id='search_form'><?php $submitLink = "scriptDoLoadPost('webmaster-tools.php', 'search_form', 'content', '&sec=viewWebsiteSearchSummary')";?><table width="100%" class="search"><tr><th><?php echo $spText['common']['Name']?>: </th><td><input type="text" name="search_name" value="<?php echo htmlentities($searchInfo['search_name'], ENT_QUOTES)?>" onblur="<?php echo $submitLink?>"></td><th width="100px"><?php echo $spText['common']['Website']?>: </th><td width="160px"><select name="website_id" id="website_id" style='width:100px;' onchange="<?php echo $submitLink?>"><option value="">-- <?php echo $spText['common']['Select']?> --</option><?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 width="100px;"><?php echo $spText['common']['Period']?>:</th><td width="236px"><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><td><a href="javascript:void(0);" onclick="<?php echo $submitLink?>" class="actionbut"><?php echo $spText['button']['Search']?></a></td></tr></table></form><?php} else {$scriptName = "archive.php";}// url parameters$mainLink = SP_WEBPATH."/$scriptName?sec=viewWebsiteSearchSummary&website_id=$websiteId&from_time=$fromTime&to_time=$toTime";$mainLink .= "&search_name=" . $searchInfo['search_name'] . "&report_type=website-search-reports";// if not summary page show the filtersif(!$summaryPage) {$directLink = $mainLink . "&order_col=$orderCol&order_val=$orderVal&pageno=$pageNo";?><br><br><div style="float:left;margin-right: 10px;"><a href="<?php echo $directLink?>&doc_type=pdf"><img src="<?php echo SP_IMGPATH?>/icon_pdf.png"></a> <a href="<?php echo $directLink?>&doc_type=export"><img src="<?php echo SP_IMGPATH?>/icoExport.gif"></a> <a target="_blank" href="<?php echo $directLink?>&doc_type=print"><img src="<?php echo SP_IMGPATH?>/print_button.gif?1"></a></div><?php}if (empty($pdfVersion)) echo $pagingDiv;}$baseColCount = count($colList);$colCount = ($baseColCount * 3) + 1;?><div id='subcontent' style="margin-top: 0px;"><table id="cust_tab"><tr><?php$hrefAttr = $pdfVersion ? "" : "href='javascript:void(0)'";foreach (array_keys($colList) as $i => $colName){$linkClass = "";if ($colName == $orderCol) {$oVal = ($orderVal == 'DESC') ? "ASC" : "DESC";$linkClass .= "sort_".strtolower($orderVal);} else {$oVal = 'DESC';}$headerVal = ($colName == 'name') ? $_SESSION['text']['common']['Website'] : $colList[$colName];$linkName = "<a id='sortLink' class='$linkClass' $hrefAttr onclick=\"scriptDoLoad('$mainLink&order_col=$colName&order_val=$oVal', 'content')\">$headerVal</a>";$rowSpan = ($colName == "name") ? 2 : 1;?><th id="head" rowspan="<?php echo $rowSpan?>" colspan="3"><?php echo $linkName; ?></th><?php}?></tr><tr><?php$pTxt = str_replace("-", "/", substr($fromTime, -5));$cTxt = str_replace("-", "/", substr($toTime, -5));foreach ($colList as $colName => $colVal) {if ($colName == 'name') continue;?><th><?php echo $pTxt; ?></th><th><?php echo $cTxt; ?></th><th>+ / -</th><?php}?></tr><?phpif (count($baseReportList) > 0) {foreach($baseReportList as $listInfo){$keywordId = $listInfo['id'];$rangeFromTime = date('Y-m-d', strtotime('-14 days', strtotime($fromTime)));$scriptLink = "website_id={$listInfo['id']}&rep=1&from_time=$rangeFromTime&to_time=$toTime";?><tr><td colspan="3"><a href="javascript:void(0)"><?php echo $listInfo['url']; ?></a></td><?phpforeach ($colList as $colName => $colVal){if ($colName == 'name') continue;$prevRank = isset($listInfo[$colName]) ? $listInfo[$colName] : 0;$currRank = isset($compareReportList[$keywordId][$colName]) ? $compareReportList[$keywordId][$colName] : 0;$rankDiffTxt = "";// check rank difference$rankDiff = $currRank - $prevRank;$rankDiff = round($rankDiff, 2);if ($colName == 'average_position') $rankDiff = $rankDiff * -1;if ($rankDiff > 0) {$rankDiffTxt = "<font class='green'>($rankDiff)</font>";} else if ($rankDiff < 0) {$rankDiffTxt = "<font class='red'>($rankDiff)</font>";} else {$rankDiffTxt = "";}$prevRankLink = scriptAJAXLinkHrefDialog('webmaster-tools.php', 'content', $scriptLink . "&sec=viewWebsiteSearchReports", $prevRank);$currRankLink = scriptAJAXLinkHrefDialog('webmaster-tools.php', 'content', $scriptLink . "&sec=viewWebsiteSearchReports", $currRank);$graphLink = scriptAJAXLinkHrefDialog('webmaster-tools.php', 'content', $scriptLink . "&sec=viewWebsiteSearchGraphReports&attr_type=$colName", ' ', 'graphicon');// if pdf report remove linksif ($pdfVersion) {$prevRankLink = str_replace("href='javascript:void(0);'", "", $prevRankLink);$currRankLink = str_replace("href='javascript:void(0);'", "", $currRankLink);$graphLink = str_replace("href='javascript:void(0);'", "", $graphLink);}?><td><?php echo $prevRankLink; ?></td><td><?php echo $currRankLink; ?></td><td><?php echo $graphLink . " " . $rankDiffTxt; ?></td><?php}?></tr><?php}}?></table></div><?phpif(!$summaryPage && (!empty($printVersion) || !empty($pdfVersion))) {echo $pdfVersion ? showPdfFooter($spText) : showPrintFooter($spText);}?>