2014-07-20 12:26:15 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Controller;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Categories management
|
|
|
|
*
|
|
|
|
* @package controller
|
|
|
|
* @author Frederic Guillot
|
|
|
|
*/
|
|
|
|
class Category extends Base
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Get the category (common method between actions)
|
|
|
|
*
|
|
|
|
* @access private
|
|
|
|
* @param $project_id
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
private function getCategory($project_id)
|
|
|
|
{
|
|
|
|
$category = $this->category->getById($this->request->getIntegerParam('category_id'));
|
|
|
|
|
|
|
|
if (! $category) {
|
|
|
|
$this->session->flashError(t('Category not found.'));
|
|
|
|
$this->response->redirect('?controller=category&action=index&project_id='.$project_id);
|
|
|
|
}
|
|
|
|
|
|
|
|
return $category;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* List of categories for a given project
|
|
|
|
*
|
|
|
|
* @access public
|
|
|
|
*/
|
|
|
|
public function index()
|
|
|
|
{
|
|
|
|
$project = $this->getProject();
|
|
|
|
|
2014-10-22 19:59:09 +02:00
|
|
|
$this->response->html($this->projectLayout('category_index', array(
|
2014-07-20 12:26:15 +02:00
|
|
|
'categories' => $this->category->getList($project['id'], false),
|
|
|
|
'values' => array('project_id' => $project['id']),
|
|
|
|
'errors' => array(),
|
|
|
|
'project' => $project,
|
|
|
|
'menu' => 'projects',
|
|
|
|
'title' => t('Categories')
|
|
|
|
)));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Validate and save a new project
|
|
|
|
*
|
|
|
|
* @access public
|
|
|
|
*/
|
|
|
|
public function save()
|
|
|
|
{
|
|
|
|
$project = $this->getProject();
|
|
|
|
|
|
|
|
$values = $this->request->getValues();
|
|
|
|
list($valid, $errors) = $this->category->validateCreation($values);
|
|
|
|
|
|
|
|
if ($valid) {
|
|
|
|
|
|
|
|
if ($this->category->create($values)) {
|
|
|
|
$this->session->flash(t('Your category have been created successfully.'));
|
|
|
|
$this->response->redirect('?controller=category&action=index&project_id='.$project['id']);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$this->session->flashError(t('Unable to create your category.'));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-10-22 19:59:09 +02:00
|
|
|
$this->response->html($this->projectLayout('category_index', array(
|
2014-07-20 12:26:15 +02:00
|
|
|
'categories' => $this->category->getList($project['id'], false),
|
|
|
|
'values' => $values,
|
|
|
|
'errors' => $errors,
|
|
|
|
'project' => $project,
|
|
|
|
'menu' => 'projects',
|
|
|
|
'title' => t('Categories')
|
|
|
|
)));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Edit a category (display the form)
|
|
|
|
*
|
|
|
|
* @access public
|
|
|
|
*/
|
|
|
|
public function edit()
|
|
|
|
{
|
|
|
|
$project = $this->getProject();
|
|
|
|
$category = $this->getCategory($project['id']);
|
|
|
|
|
2014-10-22 19:59:09 +02:00
|
|
|
$this->response->html($this->projectLayout('category_edit', array(
|
2014-07-20 12:26:15 +02:00
|
|
|
'values' => $category,
|
|
|
|
'errors' => array(),
|
|
|
|
'project' => $project,
|
|
|
|
'menu' => 'projects',
|
|
|
|
'title' => t('Categories')
|
|
|
|
)));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Edit a category (validate the form and update the database)
|
|
|
|
*
|
|
|
|
* @access public
|
|
|
|
*/
|
|
|
|
public function update()
|
|
|
|
{
|
|
|
|
$project = $this->getProject();
|
|
|
|
|
|
|
|
$values = $this->request->getValues();
|
|
|
|
list($valid, $errors) = $this->category->validateModification($values);
|
|
|
|
|
|
|
|
if ($valid) {
|
|
|
|
|
|
|
|
if ($this->category->update($values)) {
|
|
|
|
$this->session->flash(t('Your category have been updated successfully.'));
|
|
|
|
$this->response->redirect('?controller=category&action=index&project_id='.$project['id']);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$this->session->flashError(t('Unable to update your category.'));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-10-22 19:59:09 +02:00
|
|
|
$this->response->html($this->projectLayout('category_edit', array(
|
2014-07-20 12:26:15 +02:00
|
|
|
'values' => $values,
|
|
|
|
'errors' => $errors,
|
|
|
|
'project' => $project,
|
|
|
|
'menu' => 'projects',
|
|
|
|
'title' => t('Categories')
|
|
|
|
)));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Confirmation dialog before removing a category
|
|
|
|
*
|
|
|
|
* @access public
|
|
|
|
*/
|
|
|
|
public function confirm()
|
|
|
|
{
|
|
|
|
$project = $this->getProject();
|
|
|
|
$category = $this->getCategory($project['id']);
|
|
|
|
|
2014-10-22 19:59:09 +02:00
|
|
|
$this->response->html($this->projectLayout('category_remove', array(
|
2014-07-20 12:26:15 +02:00
|
|
|
'project' => $project,
|
|
|
|
'category' => $category,
|
|
|
|
'menu' => 'projects',
|
|
|
|
'title' => t('Remove a category')
|
|
|
|
)));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Remove a category
|
|
|
|
*
|
|
|
|
* @access public
|
|
|
|
*/
|
|
|
|
public function remove()
|
|
|
|
{
|
|
|
|
$this->checkCSRFParam();
|
|
|
|
$project = $this->getProject();
|
|
|
|
$category = $this->getCategory($project['id']);
|
|
|
|
|
|
|
|
if ($this->category->remove($category['id'])) {
|
|
|
|
$this->session->flash(t('Category removed successfully.'));
|
|
|
|
} else {
|
|
|
|
$this->session->flashError(t('Unable to remove this category.'));
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->response->redirect('?controller=category&action=index&project_id='.$project['id']);
|
|
|
|
}
|
|
|
|
}
|