whoami7 - Manager
:
/
home
/
kckglobal
/
cloud.kckglobal.net
/
bkp
/
application
/
views
/
admin
/
tables
/
Upload File:
files >> /home/kckglobal/cloud.kckglobal.net/bkp/application/views/admin/tables/subscriptions.php
<?php defined('BASEPATH') or exit('No direct script access allowed'); $aColumns = [ db_prefix() . 'subscriptions.id as id', db_prefix() . 'subscriptions.name as name', get_sql_select_client_company(), db_prefix() . 'projects.name as project_name', db_prefix() . 'subscriptions.status as status', 'next_billing_cycle', 'date_subscribed', 'last_sent_at', ]; $sIndexColumn = 'id'; $sTable = db_prefix() . 'subscriptions'; $filter = []; $where = []; if ($this->ci->input->get('project_id')) { array_push($where, 'AND project_id=' . $this->ci->db->escape_str($this->ci->input->get('project_id'))); } if ($this->ci->input->get('client_id')) { array_push($where, 'AND ' . db_prefix() . 'subscriptions.clientid=' . $this->ci->db->escape_str($this->ci->input->get('client_id'))); } if (!has_permission('subscriptions', '', 'view')) { array_push($where, 'AND ' . db_prefix() . 'subscriptions.created_from=' . get_staff_user_id()); } $statusIds = []; foreach (get_subscriptions_statuses() as $status) { if ($this->ci->input->post('subscription_status_' . $status['id'])) { array_push($statusIds, $status['id']); } } if (count($statusIds) > 0) { $whereStatus = ''; foreach ($statusIds as $key => $status) { $whereStatus .= db_prefix() . 'subscriptions.status="' . $status . '" OR '; } $whereStatus = rtrim($whereStatus, ' OR '); if ($this->ci->input->post('not_subscribed')) { $whereStatus .= ' OR stripe_subscription_id IS NULL OR stripe_subscription_id = ""'; } array_push($where, 'AND (' . $whereStatus . ')'); } else { if ($this->ci->input->post('not_subscribed')) { array_push($where, 'AND ( stripe_subscription_id IS NULL OR stripe_subscription_id = "" )'); } } $join = [ 'LEFT JOIN ' . db_prefix() . 'clients ON ' . db_prefix() . 'clients.userid = ' . db_prefix() . 'subscriptions.clientid', 'LEFT JOIN ' . db_prefix() . 'projects ON ' . db_prefix() . 'projects.id = ' . db_prefix() . 'subscriptions.project_id', ]; $result = data_tables_init($aColumns, $sIndexColumn, $sTable, $join, $where, [ db_prefix() . 'subscriptions.id', db_prefix() . 'subscriptions.clientid as clientid', 'in_test_environment', 'stripe_subscription_id', 'project_id', 'hash', ]); $output = $result['output']; $rResult = $result['rResult']; foreach ($rResult as $aRow) { $row = []; $row[] = $aRow['id']; $link = admin_url('subscriptions/edit/' . $aRow['id']); $outputName = '<a href="' . $link . '">' . $aRow['name'] . '</a>'; $outputName .= '<div class="row-options">'; $outputName .= '<a href="' . site_url('subscription/' . $aRow['hash']) . '" target="_blank">' . _l('view_subscription') . '</a>'; if (has_permission('subscriptions', '', 'edit')) { $outputName .= ' | <a href="' . admin_url('subscriptions/edit/' . $aRow['id']) . '">' . _l('edit') . '</a>'; } if ((empty($aRow['stripe_subscription_id']) || (!is_null($aRow['in_test_environment']) && $aRow['in_test_environment'] == 1)) && has_permission('subscriptions', '', 'delete')) { $outputName .= ' | <a href="' . admin_url('subscriptions/delete/' . $aRow['id']) . '" class="text-danger _delete">' . _l('delete') . '</a>'; } $outputName .= '</div>'; $row[] = $outputName; $row[] = '<a href="' . admin_url('clients/client/' . $aRow['clientid']) . '">' . $aRow['company'] . '</a>'; $row[] = '<a href="' . admin_url('projects/view/' . $aRow['project_id']) . '">' . $aRow['project_name'] . '</a>'; if (empty($aRow['status'])) { $row[] = _l('subscription_not_subscribed'); } else { $row[] = _l('subscription_' . $aRow['status'], '', false); } if ($aRow['next_billing_cycle']) { $row[] = _d(date('Y-m-d', $aRow['next_billing_cycle'])); } else { $row[] = '-'; } if ($aRow['date_subscribed']) { $row[] = _dt($aRow['date_subscribed']); } else { $row[] = '-'; } if ($aRow['last_sent_at']) { $row[] = _dt($aRow['last_sent_at']); } else { $row[] = '-'; } $row['DT_RowClass'] = 'has-row-options'; $output['aaData'][] = $row; }
Copyright ©2021 || Defacer Indonesia