103 |
- |
1 |
<?php echo showSectionHead($spTextPlugin['Edit Seo Plugin']); ?>
|
|
|
2 |
<form id="updateplugin">
|
|
|
3 |
<input type="hidden" name="sec" value="update"/>
|
|
|
4 |
<input type="hidden" name="id" value="<?php echo $post['id']?>"/>
|
|
|
5 |
|
|
|
6 |
<table id="cust_tab" >
|
|
|
7 |
<tr class="form_head">
|
|
|
8 |
<th><?php echo $spTextPlugin['Edit Seo Plugin']?></th>
|
|
|
9 |
<th> </th>
|
|
|
10 |
</tr>
|
|
|
11 |
<tr class="form_data">
|
|
|
12 |
<td><?php echo $spTextPlugin['Plugin Name']?>:</td>
|
|
|
13 |
<td><input type="text" name="plugin_name" value="<?php echo $post['label']?>"><?php echo $errMsg['plugin_name']?></td>
|
|
|
14 |
</tr>
|
|
|
15 |
<tr class="form_data">
|
|
|
16 |
<td><?php echo $spText['common']['Priority']?>:</td>
|
|
|
17 |
<td><input type="text" name="priority" value="<?php echo $post['priority']?>"><?php echo $errMsg['priority']?></td>
|
|
|
18 |
</tr>
|
|
|
19 |
</table>
|
|
|
20 |
<br>
|
|
|
21 |
<table width="100%" class="actionSec">
|
|
|
22 |
<tr>
|
|
|
23 |
<td style="padding-top: 6px;text-align:right;">
|
|
|
24 |
<a onclick="scriptDoLoad('seo-plugins-manager.php', 'content')" href="javascript:void(0);" class="actionbut">
|
|
|
25 |
<?php echo $spText['button']['Cancel']?>
|
|
|
26 |
</a>
|
|
|
27 |
<?php $actFun = SP_DEMO ? "alertDemoMsg()" : "confirmSubmit('seo-plugins-manager.php', 'updateplugin', 'content')"; ?>
|
|
|
28 |
<a onclick="<?php echo $actFun?>" href="javascript:void(0);" class="actionbut">
|
|
|
29 |
<?php echo $spText['button']['Proceed']?>
|
|
|
30 |
</a>
|
|
|
31 |
</td>
|
|
|
32 |
</tr>
|
|
|
33 |
</table>
|
|
|
34 |
</form>
|