<div class="flc-admin">
	<div class="page-header">
		<h1>Your Links</h1>
	</div>
	<div class="clearfix"></div>
	<a class="btn btn-primary pull-right zoom2" href="<?php echo add_query_arg( array( 'action' => 'add' )); ?>"><span class="glyphicon glyphicon-plus"></span>&nbsp;Add Link</a>
	<div class="clearfix"></div>
	<div class="table-holder">
		<form method="post" action="">
<?php
	require_once "{$this->source->plugin_dir}oo/FLCLinksTable.php";
	if( isset($_REQUEST['section'])){
		$section_id = (int)$_REQUEST['section'];
		$queue_table = new FLCLinksTable( 
					$this->source->db->get( 
						$this->source->plugin_tables['links'],
						array( 'section_id' => $section_id ),
						10000
					)
		);
	} else {
		$queue_table = new FLCLinksTable( 
					$this->source->db->get_all( 
						$this->source->plugin_tables['links']
					)
		);
	}
	$queue_table->prepare_items();
	$queue_table->display();
?>
		</form>
	</div>
</div>
