Chamilo is a learning management system focused on ease of use and accessibility
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
chamilo-lms/public/main/ticket/projects.php

192 lines
5.1 KiB

<?php
/* For licensing terms, see /license.txt */
use ChamiloSession as Session;
/**
* This script is the Tickets plugin main entry point.
*/
$cidReset = true;
require_once __DIR__.'/../inc/global.inc.php';
api_protect_admin_script(true);
$webLibPath = api_get_path(WEB_LIBRARY_PATH);
$this_section = 'tickets';
Session::erase('this_section');
$table = new SortableTable(
'TicketProject',
['TicketManager', 'getProjectsCount'],
['TicketManager', 'getProjects'],
1
);
if (0 == $table->per_page) {
$table->per_page = 20;
}
$formToString = '';
$id = isset($_GET['id']) ? (int) $_GET['id'] : 0;
9 years ago
$action = isset($_GET['action']) ? $_GET['action'] : '';
$interbreadcrumb[] = [
9 years ago
'url' => api_get_path(WEB_CODE_PATH).'ticket/tickets.php',
'name' => get_lang('My tickets'),
];
$interbreadcrumb[] = [
'url' => api_get_path(WEB_CODE_PATH).'ticket/settings.php',
'name' => get_lang('Settings'),
];
$interbreadcrumb[] = [
'url' => api_get_path(WEB_CODE_PATH).'ticket/projects.php',
'name' => get_lang('Projects'),
];
9 years ago
switch ($action) {
case 'delete':
$tickets = TicketManager::getTicketsFromCriteria(['project' => $id]);
if (empty($tickets)) {
TicketManager::deleteProject($id);
Display::addFlash(Display::return_message(get_lang('Deleted')));
} else {
Display::addFlash(Display::return_message(get_lang('This item is related to other tickets.')));
}
header('Location: '.api_get_self());
exit;
9 years ago
break;
case 'add':
$toolName = get_lang('Add');
9 years ago
$url = api_get_self().'?action=add';
$form = TicketManager::getProjectForm($url);
$formToString = $form->returnForm();
if ($form->validate()) {
$values = $form->getSubmitValues();
9 years ago
$params = [
'name' => $values['name'],
'description' => $values['description'],
9 years ago
];
TicketManager::addProject($params);
Display::addFlash(Display::return_message(get_lang('Added')));
header('Location: '.api_get_self());
9 years ago
exit;
}
9 years ago
break;
case 'edit':
$item = TicketManager::getProject($id);
if (empty($item)) {
api_not_allowed(true);
}
9 years ago
$toolName = get_lang('Edit');
$url = api_get_self().'?action=edit&id='.$id;
$form = TicketManager::getProjectForm($url);
$form->setDefaults([
'name' => $item->getName(),
'description' => $item->getDescription(),
]);
9 years ago
$formToString = $form->returnForm();
if ($form->validate()) {
$values = $form->getSubmitValues();
9 years ago
$params = [
'name' => $values['name'],
'description' => $values['description'],
'sys_lastedit_datetime' => api_get_utc_datetime(),
'sys_lastedit_user_id' => api_get_user_id(),
9 years ago
];
TicketManager::updateProject($id, $params);
Display::addFlash(Display::return_message(get_lang('Update successful')));
header('Location: '.api_get_self());
9 years ago
exit;
}
9 years ago
break;
default:
break;
}
$user_id = api_get_user_id();
$isAdmin = api_is_platform_admin();
/**
* Build the modify-column of the table.
*
* @param int $id The user id
* @param string $params URL params to add to table links
* @param array $row Row of elements to alter
*
* @return string Some HTML-code with modify-buttons
*/
function modify_filter($id, $params, $row)
{
$result = Display::url(
get_lang('Tickets'),
"tickets.php?project_id={$row['id']}",
['class' => 'btn btn-small btn-default']
);
$result .= Display::url(
get_lang('Categories'),
"categories.php?project_id={$row['id']}",
['class' => 'btn btn-default']
);
$result .= Display::url(
Display::return_icon('edit.png', get_lang('Edit')),
"projects.php?action=edit&id={$row['id']}"
);
$result .= Display::url(
Display::return_icon('delete.png', get_lang('Delete')),
"projects.php?action=delete&id={$row['id']}"
);
return $result;
}
$table->set_header(0, '', false);
$table->set_header(1, get_lang('Title'), false);
$table->set_header(2, get_lang('Description'), true, ['style' => 'width:200px']);
$table->set_header(3, get_lang('Detail'), true);
9 years ago
$table->set_column_filter('3', 'modify_filter');
Display::display_header('');
$items = [
'icon' => 'new_folder.png',
'url' => 'projects.php?action=add',
'content' => get_lang('Add project'),
];
echo '<div class="actions">';
echo Display::url(
Display::return_icon('back.png', get_lang('Tickets'), [], ICON_SIZE_MEDIUM),
api_get_path(WEB_CODE_PATH).'ticket/tickets.php'
);
$sections = TicketManager::getSettingsMenuItems('project');
array_unshift($sections, $items);
foreach ($sections as $item) {
echo Display::url(
Display::return_icon($item['icon'], $item['content'], [], ICON_SIZE_MEDIUM),
$item['url']
);
}
echo '</div>';
echo $formToString;
echo $table->return_table();
Display::display_footer();