Subversion Repositories cheapmusic

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
103 - 1
<?php
2
$backLink = "scriptDoLoadPost('siteauditor.php', 'search_form', 'subcontent', '&sec=showreport&pageno={$post['pageno']}&order_col={$post['order_col']}&order_val={$post['order_val']}')";
3
?>
4
<br>
5
<div id="run_project">
6
	<div>&nbsp;<a href="javascript:void(0)" onclick="<?php echo $backLink?>" class="back">&#171&#171 Back</a></div>
7
	<div id="run_info">
8
		<table width="100%" border="0" cellspacing="0" cellpadding="0px" class="summary_tab">
9
        	<tr>
10
        		<td class="topheader" colspan="10"><?php echo $spTextSA['Page Details']?></td>
11
        	</tr>
12
        	<tr>
13
        		<th class="leftcell" width="20%"><?php echo $spTextSA['Page Link']?>:</th>
14
        		<td width="40%" style="text-align: left;"><a href="<?php echo $reportInfo['page_url']?>" target="_blank"><?php echo $reportInfo['page_url']?></a></td>
15
        		<th width="20%"><?php echo $_SESSION['text']['common']['MOZ Rank']; ?>:</th>
16
        		<td><?php echo $reportInfo['pagerank']?></td>
17
        	</tr>
18
        	<tr>
19
        		<th class="leftcell"><?php echo $spText['label']['Score']?>:</th>
20
        		<td style="text-align: left;">
21
        		    <?php
22
				        if ($reportInfo['score'] < 0) {
23
				            $scoreClass = 'minus';
24
				            $reportInfo['score'] = $reportInfo['score'] * -1;
25
				        } else {
26
				            $scoreClass = 'plus';
27
				        }
28
				        for($b=0;$b<=$reportInfo['score'];$b++) echo "<span class='$scoreClass'>&nbsp;</span>";
29
				    ?>
30
        		    <?php echo $reportInfo['score']?>
31
    			</td>
32
        		<th width="20%"><?php echo $_SESSION['text']['common']['Page Authority']; ?>:</th>
33
        		<td><?php echo $reportInfo['page_authority']?></td>
34
        	</tr>
35
        	<tr>
36
        		<th class="leftcell"><?php echo $spText['label']['Title']?>:</th>
37
        		<td style="text-align: left;"><?php echo strip_tags($reportInfo['page_title'])?></td>
38
        		<th>Google <?php echo $spTextHome['Backlinks']?>:</th>
39
        		<td><?php echo $reportInfo['google_backlinks']?></td>
40
        	</tr>
41
        	<tr>
42
        		<th class="leftcell"><?php echo $spText['label']['Description']?>:</th>
43
        		<td style="text-align: left;"><?php echo strip_tags($reportInfo['page_description'])?></td>
44
        		<th>Bing <?php echo $spTextHome['Backlinks']?>:</th>
45
        		<td><?php echo $reportInfo['bing_backlinks']?></td>
46
        	</tr>
47
        	<tr>
48
        		<th class="leftcell"><?php echo $spText['label']['Keywords']?>:</th>
49
        		<td style="text-align: left;"><?php echo strip_tags($reportInfo['page_keywords'])?></td>
50
        		<th>Google <?php echo $spTextHome['Indexed']?>:</th>
51
        		<td><?php echo $reportInfo['google_indexed']?></td>
52
        	</tr>
53
        	<tr>
54
        		<th class="leftcell"><?php echo $spText['label']['Comments']?>:</th>
55
        		<td style="text-align: left;"><?php echo $reportInfo['comments']?></td>
56
        		<th>Bing <?php echo $spTextHome['Indexed']?>:</th>
57
        		<td><?php echo $reportInfo['bing_indexed']?></td>
58
        	</tr>
59
        	<tr>
60
        		<th class="leftcell"><?php echo $spTextSA['Total Links']?>:</th>
61
        		<td style="text-align: left;"><?php echo $reportInfo['total_links']?></td>
62
        		<th><?php echo $spTextSA['External Links']?>:</th>
63
        		<td><?php echo $reportInfo['external_links']?></td>
64
        	</tr>
65
        	<tr>
66
        		<th class="leftcell"><?php echo $spText['label']['Brocken']?>:</th>
67
        		<td style="text-align: left;"><?php echo $reportInfo['brocken'] ? $spText['common']['Yes'] : $spText['common']['No']; ?></td>
68
        		<th></th>
69
        		<td></td>
70
        	</tr>
71
        </table>
72
	</div>
73
 
74
	<br><br>
75
	<?php echo showSectionHead($spTextSA['Page Links']); ?>
76
	<div>
77
		<table width="100%" border="0" cellspacing="0" cellpadding="0" class="list">
78
        	<tr class="listHead">
79
        		<td class="leftid"><?php echo $spText['common']['No']?></td>
80
        		<td><?php echo $spText['common']['Url']?></td>
81
        		<td><?php echo $spTextSA['Anchor']?></td>
82
        		<td><?php echo $spTextSA['Link Title']?></td>
83
        		<td><?php echo $spTextSA['Nofollow']?></td>
84
        		<td class="right"><?php echo $spTextSA['External']?></td>
85
        	</tr>
86
        	<?php
87
        	$colCount = 6;
88
        	if(count($linkList) > 0){
89
        		$catCount = count($list);
90
        		foreach($linkList as $i => $listInfo){
91
        			$class = ($i % 2) ? "blue_row" : "white_row";
92
                    if($catCount == ($i + 1)){
93
                        $leftBotClass = "tab_left_bot";
94
                        $rightBotClass = "tab_right_bot";
95
                    }else{
96
                        $leftBotClass = "td_left_border td_br_right";
97
                        $rightBotClass = "td_br_right";
98
                    }
99
        			?>
100
        			<tr class="<?php echo $class?>">
101
        				<td class="<?php echo $leftBotClass?>"><?php echo $i+1?></td>
102
        				<td class="td_br_right left">
103
        				    <a href="<?php echo $listInfo['link_url']?>" target="_blank"><?php echo $listInfo['link_url']?></a>
104
        				</td>
105
        				<td class="td_br_right left"><?php echo $listInfo['link_anchor']?></td>
106
        				<td class="td_br_right left"><?php echo $listInfo['link_title']?></td>
107
        				<td class="td_br_right">
108
        				    <?php echo $listInfo['nofollow'] ? $spText['common']['Yes'] : $spText['common']['No']; ?>
109
        				</td>
110
        				<td class="<?php echo $rightBotClass?>">
111
        					<?php echo $listInfo['extrenal'] ? $spText['common']['Yes'] : $spText['common']['No']; ?>
112
        				</td>
113
        			</tr>
114
        			<?php
115
        		}
116
        	}else{
117
        		echo showNoRecordsList($colCount-2);
118
        	}
119
        	?>
120
        	<tr class="listBot">
121
        		<td class="left" colspan="<?php echo ($colCount-1)?>"></td>
122
        		<td class="right"></td>
123
        	</tr>
124
        </table>
125
	</div>
126
</div>