Blame | Last modification | View Log | RSS feed
<?php echo showSectionHead($spTextPanel['Directory Manager']); ?>
<form id='search_form'>
<table width="88%" border="0" cellspacing="0" cellpadding="0" class="search">
<?php $submitLink = "scriptDoLoadPost('directories.php', 'search_form', 'content', '&sec=directorymgr')";?>
<tr>
<th><?php echo $spText['common']['Directory']?>: </th>
<td width="100px"><input type="text" name="dir_name" value="<?php echo htmlentities($info['dir_name'], ENT_QUOTES)?>" onblur="<?php echo $submitLink?>"></td>
<th><?php echo $spText['common']['Status']?>: </th>
<td width="100px">
<select name="stscheck" onchange="<?php echo $submitLink?>">
<?php foreach($statusList as $key => $val){?>
<?php if($info['stscheck'] == $val){?>
<option value="<?php echo $val?>" selected><?php echo $key?></option>
<?php }else{?>
<option value="<?php echo $val?>"><?php echo $key?></option>
<?php }?>
<?php }?>
</select>
</td>
<th><?php echo $spTextDir['Captcha']?>: </th>
<td>
<select name="capcheck" onchange="<?php echo $submitLink?>">
<option value="">-- All --</option>
<?php foreach($captchaList as $key => $val){?>
<?php if($info['capcheck'] == $val){?>
<option value="<?php echo $val?>" selected><?php echo $key?></option>
<?php }else{?>
<option value="<?php echo $val?>"><?php echo $key?></option>
<?php }?>
<?php }?>
</select>
</td>
</tr>
<tr>
<th><?php echo $spText['common']['Pagerank']?>: </th>
<td>
<select name="pagerank" onchange="<?php echo $submitLink?>">
<option value="">-- <?php echo $spText['common']['Select']?> --</option>
<?php
for ($i=0; $i<=10; $i++) {
$selected = (($info['pagerank'] != '') && ($i == $info['pagerank'])) ? "selected" : "";
?>
<option value="<?php echo $i?>" <?php echo $selected?>>PR <?php echo $i?></option>
<?php
}
?>
</select>
</td>
<th><?php echo $spText['common']['lang']?>: </th>
<td>
<select name="lang_code" onchange="<?php echo $submitLink?>">
<option value="">-- <?php echo $spText['common']['Select']?> --</option>
<?php
foreach ($langList as $langInfo) {
$selected = ($langInfo['lang_code'] == $info['lang_code']) ? "selected" : "";
?>
<option value="<?php echo $langInfo['lang_code']?>" <?php echo $selected?>><?php echo $langInfo['lang_name']?></option>
<?php
}
?>
</select>
</td>
<td colspan="2" style="text-align: center;">
<a href="javascript:void(0);" onclick="scriptDoLoadPost('directories.php', 'search_form', 'content', '&sec=directorymgr')" class="actionbut">
<?php echo $spText['button']['Show Records']?>
</a>
</td>
</tr>
</table>
<br></br>
</form>
<?php echo $pagingDiv?>
<table width="100%" border="0" cellspacing="0" cellpadding="0" class="list">
<tr class="listHead">
<td class="left"><?php echo $spText['common']['Id']?></td>
<td><?php echo $spText['common']['Website']?></td>
<td>PR</td>
<td><?php echo $spText['common']['Domain Authority']?></td>
<td><?php echo $spText['common']['Page Authority']?></td>
<td><?php echo $spTextDir['Captcha']?></td>
<td><?php echo $spText['common']['lang']?></td>
<td><?php echo $spText['common']['Status']?></td>
<td class="right"><?php echo $spText['common']['Action']?></td>
</tr>
<?php
$colCount = 9;
if(count($list) > 0){
$catCount = count($list);
foreach($list as $i => $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";
}
$statusLink = $ctrler->getStatusLink($listInfo['id'], $listInfo['working']);
$checkLink = scriptAJAXLinkHref('directories.php', "status_{$listInfo['id']}", "sec=checkdir&dir_id={$listInfo['id']}&nodebug=1&checkpr=1", $spText['button']["Check Status"]);
?>
<tr class="<?php echo $class?>">
<td class="<?php echo $leftBotClass?>"><?php echo $listInfo['id']?></td>
<td class="td_br_right left"><a target="_blank" href="<?php echo $listInfo['submit_url']?>"><?php echo str_replace('http://', '', $listInfo['domain']); ?></a></td>
<td class="td_br_right" id="pr_<?php echo $listInfo['id']?>"><?php echo $listInfo['pagerank']?></td>
<td class="td_br_right" id="da_<?php echo $listInfo['id']?>"><?php echo $listInfo['domain_authority']?></td>
<td class="td_br_right" id="pa_<?php echo $listInfo['id']?>"><?php echo $listInfo['page_authority']?></td>
<td class="td_br_right" id="captcha_<?php echo $listInfo['id']?>"><?php echo $listInfo['is_captcha'] ? $spText['common']["Yes"] : $spText['common']["No"]; ?></td>
<td class="td_br_right"><?php echo $listInfo['lang_name']?></td>
<td class="td_br_right" id="status_<?php echo $listInfo['id']?>"><?php echo $statusLink; ?></td>
<td class="<?php echo $rightBotClass?>" width="100px"><?php echo $checkLink; ?></td>
</tr>
<?php
}
}else{
echo showNoRecordsList($colCount-2);
}
?>
<tr class="listBot">
<td class="left" colspan="<?php echo ($colCount-1)?>"></td>
<td class="right"></td>
</tr>
</table>