<?php
/*
$HeadURL$
$LastChangedDate$
$LastChangedRevision$
$LastChangedBy$
*/
?>
<p>Replace text in you post and pages with links from you links list.</p>
<table class='form-table'>
	<tr valign='top'>
		<th scope='row'>Insert</th>
		<td><input type='checkbox' name='insert-links[insert]' value='yes'
			<?php
			echo $this->html_form->checked ( $this->options->values ['insert-links'] ['insert'] );
			?> /><br />
		<small>Replace text in post and pages with links from the blogs link
		list.</small></td>
	</tr>
	<tr valign='top'>
		<th scope='row'>Timeout</th>
		<td><input type='text' name='insert-links[#timeout]'
			value='<?php
			echo $this->options->values ['insert-links'] ['#timeout'];
			?>' /> microseconds<br>
		<small> This timeout should be used to prevent some heavily tagged
		posts from causing the page to timeout.<br />
		It should be set lower than the page timeout.<br />
		All processing will stop and all changes will be abandoned if it is
		exceeded. </small></td>
	</tr>
	<tr valign='top'>
		<th scope='row'>Include</th>
		<td><input style='width: 90%' type='text' name='insert-links[include]'
			value='<?php
			echo implode(',',(array)$this->options->values ['insert-links'] ['include']);
			?>' /><br>
		<small> Comma separated list.<br />
		A list of categories from which to get the links to be insert-linksed.<br />
		Leave blank to to use them all. </small></td>
	</tr>
	<tr valign='top'>
		<th scope='row'>Exclude</th>
		<td><input style='width: 90%' type='text' name='insert-links[exclude]'
			value='<?php
			echo implode(',',(array)$this->options->values ['insert-links'] ['exclude']);
			?>' /><br>
		<small> Comma separated list.<br />
		A list of categories from which to get the links not to be
		insert-linksed.<br />
		Takes priority over include. </small></td>
	</tr>
	<tr valign='top'>
		<th scope='row'>Limit</th>
		<td><input type='text' name='insert-links[#limit]'
			value='<?php
			echo $this->options->values ['insert-links'] ['#limit'];
			?>' /><br>
		<small> Limits the number of time each link can be inserted in a post
		or page.<br />
		</small></td>
	</tr>
	<tr valign='top'>
		<th scope='row'>Priority</th>
		<td><input type='text' name='insert-links[#priority]'
			value='<?php
			echo $this->options->values ['insert-links'] ['#priority'];
			?>' /><br>
		<small> Allows you set set whether other plguins get to adjust the
		post/page before the links are insert-linksed.<br />
		Range 1 to 10.<br />
		1 running earliest.<br />
		10 running latest. </small></td>
	</tr>
</table>
