Current Path : /var/www/alh/admin/view/template/extension/openbay/ |
Current File : /var/www/alh/admin/view/template/extension/openbay/ebay_subscription.twig |
{{ header }}{{ column_left }} <div id="content"> <div class="page-header"> <div class="container-fluid"> <div class="pull-right"> <a href="{{ return }}" data-toggle="tooltip" title="{{ button_cancel }}" class="btn btn-default"><i class="fa fa-reply"></i></a> </div> <h1>{{ heading_title }}</h1> <ul class="breadcrumb"> {% for breadcrumb in breadcrumbs %} <li><a href="{{ breadcrumb.href }}">{{ breadcrumb.text }}</a></li> {% endfor %} </ul> </div> </div> <div class="container-fluid"> <div class="panel panel-default"> <div class="panel-heading"> <h3 class="panel-title"><i class="fa fa-list"></i> {{ text_subscription }}</h3> </div> <div class="panel-body"> <div class="row"> <div class="col-md-4"> <a class="btn btn-primary" id="load-account" disabled="disabled"><i class="fa fa-cog fa-lg fa-spin"></i> {{ text_load_my_plan }}</a> <div class="panel panel-default" id="my-plan-container"> <div class="panel-heading"> <h1 class="panel-title"><i class="fa fa-user fa-lg"></i> {{ text_subscription_current }}</h1> </div> <div class="panel-body"> <table class="table" id="my-plan"></table> </div> </div> </div> <div class="col-md-8"> <a class="btn btn-primary" id="load-plans" disabled="disabled"><i class="fa fa-cog fa-lg fa-spin"></i> {{ text_load_plans }}</a> <div class="panel panel-default" id="openbay-plans-container"> <div class="panel-heading"> <h1 class="panel-title"><i class="fa fa-list fa-lg"></i> {{ text_subscription_avail }}</h1> </div> <div class="panel-body"> <table id="openbay-plans" class="table"></table> <p>{{ text_subscription_avail1 }}</p> </div> </div> </div> </div> </div> </div> </div> </div> <script type="text/javascript"><!-- function loadAccount() { $.ajax({ url: 'index.php?route=extension/openbay/ebay/getMyPlan&user_token={{ user_token }}', type: 'post', dataType: 'json', beforeSend: function(){ $('#my-plan-container').hide(); }, success: function(json) { $('#load-account').hide(); $('#my-plan').empty(); htmlInj = ''; htmlInj += '<thead>'; htmlInj += '<tr>'; htmlInj += '<th>{{ column_plan }}</th>'; htmlInj += '<th>{{ column_price }}</th>'; htmlInj += '<th>{{ column_description }}</th>'; htmlInj += '<th></th>'; htmlInj += '</tr>'; htmlInj += '</thead>'; htmlInj += '<tbody>'; htmlInj += '<tr>'; htmlInj += '<td>'+json.plan.title+'</td>'; htmlInj += '<td>£'+json.plan.price+'</td>'; htmlInj += '<td>'+json.plan.description+'</td>'; htmlInj += '<td></td>'; htmlInj += '</tr>'; if (json.sub_id){ htmlInj += '<tr>'; htmlInj += '<td colspan="4">{{ text_ajax_acc_load_plan }}'+json.sub_id+'{{ text_ajax_acc_load_plan2 }}</td>'; htmlInj += '</tr>'; } htmlInj += '</tbody>'; $('#my-plan').append(htmlInj); $('#my-plan-container').show(); }, error: function (xhr, ajaxOptions, thrownError) { if (xhr.status != 0) { alert(thrownError + "\r\n" + xhr.statusText + "\r\n" + xhr.responseText); } } }); } function loadPlans() { $.ajax({ url: 'index.php?route=extension/openbay/ebay/getPlans&user_token={{ user_token }}', type: 'post', dataType: 'json', beforeSend: function(){ $('#openbay-plans-container').hide(); }, success: function(json) { $('#load-plans').hide(); $('#openbay-plans').empty(); htmlInj = ''; htmlInj += '<thead>'; htmlInj += '<tr>'; htmlInj += '<th>{{ column_plan }}</th>'; htmlInj += '<th>{{ column_price }}</th>'; htmlInj += '<th>{{ column_description }}</th>'; htmlInj += '<th></td>'; htmlInj += '</tr>'; htmlInj += '</thead>'; htmlInj += '<tbody>'; $.each(json.plans, function(key,val){ htmlInj += '<tr>'; htmlInj += '<td>'+val.title+'</td>'; htmlInj += '<td>£'+val.price+'</td>'; htmlInj += '<td>'+val.description+'</td>'; if (val.myplan == 1){ htmlInj += '<td><a class="btn btn-success" disabled="disabled"><i class="fa fa-check-circle-o fa-lg"></i> {{ column_current }}</a></td>'; }else{ if (val.user_plan_id == 1) { htmlInj += '<td></td>'; }else{ htmlInj += '<td>'; htmlInj += '<a href="https://uk.openbaypro.com/account/live/subscription_setup.php?plan_id='+val.user_plan_id+'&subscriber_id={{ obp_token }}" class="btn btn-primary" target="_BLANK"><i class="fa fa-arrow-right fa-lg"></i> {{ button_plan_change }}</a>'; htmlInj += '</td>'; } } htmlInj += '</tr>'; }); htmlInj += '<tbody>'; $('#openbay-plans').append(htmlInj); $('#openbay-plans-container').show(); }, error: function (xhr, ajaxOptions, thrownError) { if (xhr.status != 0) { alert(thrownError + "\r\n" + xhr.statusText + "\r\n" + xhr.responseText); } } }); } $(document).ready(function() { loadAccount(); loadPlans(); }); //--></script> {{ footer }}