Subversion Repositories cheapmusic

Rev

Blame | Last modification | View Log | RSS feed

<?php echo showSectionHead($spTextKeyword['Import Keywords']); ?>
<?php if(!empty($validationMsg)){
                ?>
                <p class="dirmsg">
                        <font class="error"><?php echo $validationMsg?></font>
                </p>
                <?php 
                }
?>
<form id="newKeyword">
<input type="hidden" name="sec" value="import"/>
<table width="100%" border="0" cellspacing="0" cellpadding="0" class="list">
        <tr class="listHead">
                <td class="left" width='30%'><?php echo $spTextKeyword['Import Keywords']?></td>
                <td class="right">&nbsp;</td>
        </tr>
        <tr class="blue_row">
                <td class="td_left_col"><?php echo $spText['common']['Website']?>:</td>
                <td class="td_right_col">
                        <select name="website_id" id="website_id" onchange="doLoad('website_id', 'websites.php', 'weburlarea', 'sec=updateurl')">
                                <?php foreach($websiteList as $websiteInfo){?>
                                        <?php if($websiteInfo['id'] == $post['website_id']){
                                            $websiteUrl = $websiteInfo['url'];
                                            ?>
                                                <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>
                        <span id="weburlarea"><input type="hidden" name="weburl" id="weburl" value="<?php echo $websiteUrl?>"></span>
                        <a style="text-decoration: none;" href="javascript:void(0);" onclick="crawlMetaData('websites.php?sec=crawlmeta&keyinput=keywords', 'crawlstats')">&#171&#171 <?php echo $spText['common']['Crawl Meta Data']?></a>
                        <div id="crawlstats" style="float: right;padding-right:100px;"></div>
                        <?php echo $errMsg['website_id']?>
                </td>
        </tr>           
        <tr class="white_row">
                <td class="td_left_col"><?php echo $spText['common']['lang']?>:</td>
                <td class="td_right_col">
                        <?php echo $this->render('language/languageselectbox', 'ajax'); ?>                      
                </td>
        </tr>
        <tr class="blue_row">
                <td class="td_left_col"><?php echo $spText['common']['Country']?>:</td>
                <td class="td_right_col">
                        <?php echo $this->render('country/countryselectbox', 'ajax'); ?>
                </td>
        </tr>
        <?php $post['searchengines'] = is_array($post['searchengines']) ? $post['searchengines'] : array(); ?>
        <tr class="white_row">
                <td class="td_left_col"><?php echo $spText['common']['Search Engine']?>:</td>
                <td class="td_right_col">
                        <select name="searchengines[]" class="multi" multiple="multiple" id="searchengines">                            
                                <?php foreach($seList as $seInfo){?>
                                        <?php $selected = in_array($seInfo['id'], $post['searchengines']) ? "selected" : ""?>
                                        <option value="<?php echo $seInfo['id']?>" <?php echo $selected?>><?php echo $seInfo['domain']?></option>
                                <?php }?>
                        </select>
                        <?php echo $errMsg['searchengines']?>
                        <br>
                        <input type="checkbox" id="select_all" onclick="selectAllOptions('searchengines', true); $('clear_all').checked=false;"> <?php echo $spText['label']['Select All']?>
                        &nbsp;&nbsp;
                        <input type="checkbox" id="clear_all" onclick="selectAllOptions('searchengines', false); $('select_all').checked=false;"> <?php echo $spText['label']['Clear All']?>
                </td>
        </tr>   
        <tr class="white_row">
                <td class="td_left_col"><?php echo $spText['common']['Keywords']?>:</td>
                <td class="td_right_col">
                        <textarea name="keywords" rows="10" id="webkeywords"><?php echo $post['keywords']?></textarea>
                        <p><?php echo $errMsg['keywords']?></p>
                        <p style="font-size: 12px;"><?php echo $spTextKeyword['Insert keywords separated with comma']?></p>
                        <P><b>Eg:</b> google seo tools,seo tools,seo</P>
                </td>
        </tr>           
        <tr class="blue_row">
                <td class="tab_left_bot_noborder"></td>
                <td class="tab_right_bot"></td>
        </tr>
        <tr class="listBot">
                <td class="left" colspan="1"></td>
                <td class="right"></td>
        </tr>
</table>
<table width="100%" cellspacing="0" cellpadding="0" border="0" class="actionSec">
        <tr>
        <td style="padding-top: 6px;text-align:right;">
                <a onclick="scriptDoLoad('keywords.php', 'content')" href="javascript:void(0);" class="actionbut">
                        <?php echo $spText['button']['Cancel']?>
                </a>&nbsp;
                <?php $actFun = SP_DEMO ? "alertDemoMsg()" : "scriptDoLoadPost('keywords.php', 'newKeyword', 'content')"; ?>
                <a onclick="<?php echo $actFun?>" href="javascript:void(0);" class="actionbut">
                        <?php echo $spText['button']['Proceed']?>
                </a>
        </td>
        </tr>
</table>
</form>