Server IP : 192.185.129.71 / Your IP : 3.17.156.147 Web Server : Apache System : Linux bh-ht-3.webhostbox.net 4.19.286-203.ELK.el7.x86_64 #1 SMP Wed Jun 14 04:33:55 CDT 2023 x86_64 User : svymadmin ( 4072) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON Directory (0755) : /home4/svymadmin/public_html/vivekaexcel.edu.in/bkp/application/views/admin/tables/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
<?php defined('BASEPATH') or exit('No direct script access allowed'); $aColumns = [ 'name', 'start_date', 'due_date', 'description', ]; $sIndexColumn = 'id'; $sTable = db_prefix() . 'milestones'; $where = [ 'AND project_id=' . $this->ci->db->escape_str($project_id), ]; $result = data_tables_init($aColumns, $sIndexColumn, $sTable, [], $where, [ 'id', 'milestone_order', 'description', 'description_visible_to_customer', 'hide_from_customer', ]); $output = $result['output']; $rResult = $result['rResult']; foreach ($rResult as $aRow) { $row = []; $nameRow = $aRow['name']; if (staff_can('edit_milestones', 'projects')) { $nameRow = '<a href="#" onclick="edit_milestone(this,' . $aRow['id'] . '); return false" data-name="' . $aRow['name'] . '" data-start_date="' . _d($aRow['start_date']) . '" data-due_date="' . _d($aRow['due_date']) . '" data-order="' . $aRow['milestone_order'] . '" data-description="' . htmlspecialchars(clear_textarea_breaks($aRow['description'])) . '" data-description-visible-to-customer="' . $aRow['description_visible_to_customer'] . '" data-hide-from-customer="' . $aRow['hide_from_customer'] . '">' . $nameRow . '</a>'; } if (staff_can('delete_milestones', 'projects')) { $nameRow .= '<div class="row-options">'; $nameRow .= '<a href="' . admin_url('projects/delete_milestone/' . $project_id . '/' . $aRow['id']) . '" class="text-danger _delete">' . _l('delete') . '</a>'; $nameRow .= '</div>'; } $row[] = $nameRow; $row[] = _d($aRow['start_date']); $dateRow = _d($aRow['due_date']); if (date('Y-m-d') > $aRow['due_date'] && total_rows(db_prefix() . 'tasks', [ 'milestone' => $aRow['id'], 'status !=' => 5, 'rel_id' => $project_id, 'rel_type' => 'project', ]) > 0) { $dateRow .= ' <span class="label label-danger mleft5 inline-block">' . _l('project_milestone_duedate_passed') . '</span>'; } $row[] = $dateRow; $row[] = clear_textarea_breaks($aRow['description']); $row['DT_RowClass'] = 'has-row-options'; $output['aaData'][] = $row; }