Sindbad~EG File Manager
<?php $__env->startSection('title','Campaigns'); ?>
<?php $__env->startSection('formtitle','Campaigns'); ?>
<?php $__env->startSection('content'); ?>
<?php echo Form::open(array('url' => '/campaigns?showFilter=1')); ?>
<h3>CAMPAIGNS</h3>
<div class="panel-group" id="accordion" role="tablist" aria-multiselectable="true">
<div class="panel panel-default">
<div class="panel-heading" role="tab" id="headingOne" >
<h4 class="panel-title">
<a data-toggle="collapse" data-parent="#accordion" href="#collapseOne" aria-expanded="true" aria-controls="collapseOne">
<span class="glyphicon glyphicon-filter"></span> Filter
</a>
</h4>
</div>
<div id="collapseOne" class="panel-collapse collapse" role="tabpanel" aria-labelledby="headingOne">
<div class="panel-body">
<div class="row form-group">
<div class="col-xs-4 col-sm-4 col-md-4">
<label class="bold">Title</label>
<input type="text" class="form-control" name="txtTitle" value="<?php echo isset($title) ? $title : ''; ?>">
</div>
<div class="col-xs-4 col-sm-4 col-md-4">
<label class="bold">From Date</label>
<input type="text" class="form-control" name="txtFrom" value="<?php echo isset($from) ? $from : ''; ?>" placeholder="DD/MM/YYYY">
</div>
<div class="col-xs-4 col-sm-4 col-md-4">
<label class="bold">To Date</label>
<input type="text" class="form-control" name="txtTo" value="<?php echo isset($to) ? $to : ''; ?>" placeholder="DD/MM/YYYY">
</div>
</div>
<div class="row form-group">
<div class="col-xs-12 col-sm-12 col-md-12 text-right">
<button class="btn btn-md btn-default" type="submit">
<span class="glyphicon glyphicon-filter"></span>Filter
</button>
</div>
</div>
</div>
</div>
</div>
</div>
<?php echo Form::close(); ?>
<div class="panel panel-default">
<!-- Default panel contents -->
<div class="panel-heading">
<span class="glyphicon glyphicon-list"></span>
<?php if(isset($showFilter) && intval($showFilter) == 1 ): ?>
Search results
<?php endif; ?>
<div class="tools pull-right">
<?php if(isset($showFilter) && intval($showFilter) == 1 ): ?>
<?php echo HTML::decode ( HTML::link(URL::to('/').'/campaigns','<span class="glyphicon glyphicon-arrow-left" aria-hidden="true"></span> Cancel',array('class' => 'btn btn-sm btn-default', 'title' => 'Cancel'))
); ?>
<?php endif; ?>
<?php echo HTML::decode ( HTML::link(URL::to('/').'/campaign/create','<span class="glyphicon glyphicon-plus-sign" aria-hidden="true"></span> Add New Campaign',array('class' => 'btn btn-sm btn-primary', 'title' => 'New'))
); ?>
</div><!-- End of pull-right -->
</div><!-- End of panel-heading -->
<!-- Table -->
<div class="table-responsive">
<table class="table table-striped table-bordered table-hover">
<thead>
<tr class="header">
<th></th>
<th>Campaign ID</th>
<th>Title</th>
<th>Created On</th>
<th>Yes</th>
<th>No</th>
</tr>
</thead>
<tbody>
<?php $i = 0 ; ?>
<?php if(isset($campaigns) && count($campaigns)>0): ?>
<?php foreach($campaigns as $key => $value): ?>
<tr>
<td>
<?php echo HTML::decode ( HTML::link(URL::to('/').'/campaign/edit/'.urlencode( Helper::encrypt($value->campaign_id)),'Edit',array('title' => 'Edit'))); ?>
</td>
<td><?php echo $value->campaign_no; ?></td>
<td><?php echo $value->title; ?></td>
<td><?php echo Helper::fromDBToDDMMYYYYHMS($value->created_at); ?></td>
<td>
<?php
$urlyes = URL::to("/")."/feedback/"."*|LIST:UID|*"."/"."*|EMAIL_UID|*"."/".urlencode( Helper::encrypt($value->campaign_no))."/".urlencode( Helper::encrypt(1));
$fullURLYes = '<a href = "'.$urlyes.'">Yes</a>';
$urlno = URL::to("/")."/feedback/"."*|LIST:UID|*"."/"."*|EMAIL_UID|*"."/".urlencode( Helper::encrypt($value->campaign_no))."/".urlencode( Helper::encrypt(0));
$fullURLNo = '<a href = "'.$urlno.'">No</a>';
?>
<?php echo Form::text('txtURL1',HTML::decode($fullURLYes),array('class' => 'form-control input-md')); ?>
<a href="#" class="copy-lickey">copy</a></td>
<td>
<?php echo Form::text('txtURL2',$fullURLNo,array('class' => 'form-control input-md')); ?>
<a href="#" class="copy-lickey">copy</a></td>
</td>
</tr>
<?php endforeach; ?>
<?php endif; ?>
</tbody>
</table> <!-- end of table -->
</div>
</div><!-- end of panel panel-default -->
<?php if(isset($campaigns) && count($campaigns)>0): ?>
<div class="row">
<div class="col-md-12 text-right">
<?php echo $campaigns->appends(array('showFilter' => $showFilter,'title' => $title,'from' => $from,'to' => $to))->links(); ?>
</div>
<?php endif; ?>
<?php $__env->stopSection(); ?>
<?php $__env->startSection("script"); ?>
<script type="text/javascript">
function copyToClipboard(text)
{
window.prompt("Copy to clipboard: Press Ctrl+C, then Enter", text);
}
$(document).ready(function() {
$('body').on('click', 'a.copy-lickey', function()
{
copyToClipboard($(this).prev().val());
});
});
</script>
<?php $__env->stopSection(); ?>
<?php echo $__env->make('bolayout', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>
Sindbad File Manager Version 1.0, Coded By Sindbad EG ~ The Terrorists