Файл: adultscript-2.0.3-pro/files/admin/templates/default/tools_sitemap_video.tpl.php
Строк: 74
<?php defined('_VALID') or die('Restricted Access!'); ?>
<?php echo $this->fetch('errors'); ?>
<?php echo $this->fetch('messages'); ?>
<?php echo $this->fetch('warnings'); ?>
<div id="container" class="clearfix">
<div id="page">
<?php echo $this->fetch('main_menu'); ?>
<div class="content clearfix">
<form id="sitemap-form" method="post" action="<?php echo ADMIN_URL; ?>/index.php?q=tools/sitemap/video">
<fieldset>
<legend>Sitemap Index Information</legend>
<?php if ($this->sitemap['created']): ?>
<div class="none">
File Name: <?php echo $this->sitemap['name']; ?><br />
File Size: <?php echo VText::bytes($this->sitemap['size']); ?><br />
Build Date: <?php echo $this->sitemap['date']; ?><br />
</div>
<?php else: ?>
<div class="none" style="padding: 30px;">Sitemap not generated!</div>
<?php endif; ?>
</fieldset>
<fieldset>
<legend>Options</legend>
<div class="required">
<label for="use_location">Use Location</label>
<input name="use_location" type="checkbox" id="use_location" class="radio" value="1"<?php if ($this->options['use_location'] == '1'): echo ' checked="checked"'; endif; ?> /> (use video file location in sitemap)
</div>
<div class="required">
<label for="use_player">Use Player</label>
<input name="use_player" type="checkbox" id="use_player" class="radio" value="1"<?php if ($this->options['use_player'] == '1'): echo ' checked="checked"'; endif; ?> /> (use video flash player in sitemap)
</div>
<div class="required">
<label for="max_per_file">Max Items</label>
<input name="max_per_file" type="text" id="max_per_file" class="small" value="<?php echo $this->options['max_per_file']; ?>" /> <span>Maximum urls to include in the sitemap!</span>
</div>
<div class="required">
<label for="ping_search_engines">Ping Search Engines</label>
<ul class="seps">
<li><input name="ping_google" type="checkbox" id="ping_google" class="radio" value="1" /> <strong>Google</strong></li>
</ul>
<span style="margin-left: 216px; display: block;">Only check ping google if you have a webmaster account for google!</span>
</div>
<div class="submit">
<input name="submit_sitemap" type="submit" class="button butDef" value="<?php if ($this->sitemap['created'] == '1'): echo 'Rebuild Sitemap'; else: echo 'Create Sitemap'; endif; ?>" />
</div>
</fieldset>
</form>
</div>
</div>
</div>