103 |
- |
1 |
<?php echo showSectionHead($spTextTools['sitemap-generator']); ?>
|
|
|
2 |
<form id='search_form'>
|
|
|
3 |
<table width="98%" border="0" cellspacing="0" cellpadding="0" class="search">
|
|
|
4 |
<tr>
|
|
|
5 |
<th><?php echo $spText['label']['Project']?>: </th>
|
|
|
6 |
<td>
|
|
|
7 |
<select id="project_id" name="project_id" style="width: 150px;">
|
|
|
8 |
<?php foreach($projectList as $list) {?>
|
|
|
9 |
<option value="<?php echo $list['id']?>"><?php echo $list['name']?></option>
|
|
|
10 |
<?php }?>
|
|
|
11 |
</select>
|
|
|
12 |
</td>
|
|
|
13 |
</tr>
|
|
|
14 |
<tr>
|
|
|
15 |
<th><?php echo $spTextSitemap['Sitemap Type']?>: </th>
|
|
|
16 |
<td>
|
|
|
17 |
<select name="sm_type" style="width:150px;">
|
|
|
18 |
<option value="xml">XML</option>
|
|
|
19 |
<option value="txt">Text</option>
|
|
|
20 |
<option value="html">HTML</option>
|
|
|
21 |
</select>
|
|
|
22 |
</td>
|
|
|
23 |
</tr>
|
|
|
24 |
<tr>
|
|
|
25 |
<th><?php echo $spTextSitemap['Change frequency']?>: </th>
|
|
|
26 |
<td>
|
|
|
27 |
<select name="freq" style="width:150px;">
|
|
|
28 |
<option value="">None</option>
|
|
|
29 |
<option value="always">Always</option>
|
|
|
30 |
<option value="hourly">Hourly</option>
|
|
|
31 |
<option value="daily">Daily</option>
|
|
|
32 |
<option value="weekly">Weekly</option>
|
|
|
33 |
<option value="monthly">Monthly</option>
|
|
|
34 |
<option value="yearly">Yearly</option>
|
|
|
35 |
<option value="never">Never</option>
|
|
|
36 |
</select>
|
|
|
37 |
</td>
|
|
|
38 |
</tr>
|
|
|
39 |
<tr>
|
|
|
40 |
<th><?php echo $spText['common']['Priority']?>: </th>
|
|
|
41 |
<td>
|
|
|
42 |
<select name="priority" style="width:150px;">
|
|
|
43 |
<option value="0.5">0.5</option>
|
|
|
44 |
<option value="1">1</option>
|
|
|
45 |
<option value="auto">Automatic Priority</option>
|
|
|
46 |
</select>
|
|
|
47 |
</td>
|
|
|
48 |
</tr>
|
|
|
49 |
<tr>
|
|
|
50 |
<th style="vertical-align: text-top;padding-top: 10px;"><?php echo $spTextSitemap['Exclude Url']?>: </th>
|
|
|
51 |
<td>
|
|
|
52 |
<textarea name="exclude_url"><?php echo $post['exclude_url']?></textarea>
|
|
|
53 |
<p style="margin-top: 6px;"><?php echo $spTextSA['Insert links separated with comma']?>.</p>
|
|
|
54 |
<p><b>Note:</b> <?php echo $spTextSA['anylinkcontainexcludesitemap']?>.</p>
|
|
|
55 |
<p><b>Eg:</b> http://www.seopanel.in/plugin/l/, http://www.seopanel.in/plugin/d/</p>
|
|
|
56 |
</td>
|
|
|
57 |
</tr>
|
|
|
58 |
<tr>
|
|
|
59 |
<th> </th>
|
|
|
60 |
<td style="padding-left: 9px;padding-top: 10px;">
|
|
|
61 |
<a href="javascript:void(0);" onclick="scriptDoLoadPost('sitemap.php', 'search_form', 'subcontent')" class="actionbut"><?php echo $spText['button']['Proceed']?></a>
|
|
|
62 |
</td>
|
|
|
63 |
</tr>
|
|
|
64 |
</table>
|
|
|
65 |
</form>
|
|
|
66 |
|
|
|
67 |
<br>
|
|
|
68 |
<div id='subcontent'>
|
|
|
69 |
<p class='note' id='proceed'><?php echo $spTextSitemap['clickproceedsitemap']?>.</p>
|
|
|
70 |
</div>
|