mirror of
https://github.com/YunoHost-Apps/kanboard_ynh.git
synced 2024-09-03 19:36:17 +02:00
115 lines
3.2 KiB
PHP
115 lines
3.2 KiB
PHP
<?php
|
|
|
|
namespace Kanboard\Model;
|
|
|
|
use Kanboard\Core\Base;
|
|
|
|
/**
|
|
* Board model
|
|
*
|
|
* @package Kanboard\Model
|
|
* @author Frederic Guillot
|
|
*/
|
|
class BoardModel extends Base
|
|
{
|
|
/**
|
|
* Get Kanboard default columns
|
|
*
|
|
* @access public
|
|
* @return string[]
|
|
*/
|
|
public function getDefaultColumns()
|
|
{
|
|
return array(t('Backlog'), t('Ready'), t('Work in progress'), t('Done'));
|
|
}
|
|
|
|
/**
|
|
* Get user default columns
|
|
*
|
|
* @access public
|
|
* @return array
|
|
*/
|
|
public function getUserColumns()
|
|
{
|
|
$column_names = explode(',', $this->configModel->get('board_columns', implode(',', $this->getDefaultColumns())));
|
|
$columns = array();
|
|
|
|
foreach ($column_names as $column_name) {
|
|
$column_name = trim($column_name);
|
|
|
|
if (! empty($column_name)) {
|
|
$columns[] = array('title' => $column_name, 'task_limit' => 0, 'description' => '');
|
|
}
|
|
}
|
|
|
|
return $columns;
|
|
}
|
|
|
|
/**
|
|
* Create a board with default columns, must be executed inside a transaction
|
|
*
|
|
* @access public
|
|
* @param integer $project_id Project id
|
|
* @param array $columns Column parameters [ 'title' => 'boo', 'task_limit' => 2 ... ]
|
|
* @return boolean
|
|
*/
|
|
public function create($project_id, array $columns)
|
|
{
|
|
$position = 0;
|
|
|
|
foreach ($columns as $column) {
|
|
$values = array(
|
|
'title' => $column['title'],
|
|
'position' => ++$position,
|
|
'project_id' => $project_id,
|
|
'task_limit' => $column['task_limit'],
|
|
'description' => $column['description'],
|
|
);
|
|
|
|
if (! $this->db->table(ColumnModel::TABLE)->save($values)) {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
/**
|
|
* Copy board columns from a project to another one
|
|
*
|
|
* @author Antonio Rabelo
|
|
* @param integer $project_from Project Template
|
|
* @param integer $project_to Project that receives the copy
|
|
* @return boolean
|
|
*/
|
|
public function duplicate($project_from, $project_to)
|
|
{
|
|
$columns = $this->db->table(ColumnModel::TABLE)
|
|
->columns('title', 'task_limit', 'description')
|
|
->eq('project_id', $project_from)
|
|
->asc('position')
|
|
->findAll();
|
|
|
|
return $this->boardModel->create($project_to, $columns);
|
|
}
|
|
|
|
/**
|
|
* Get the total of tasks per column
|
|
*
|
|
* @access public
|
|
* @param integer $project_id
|
|
* @param boolean $prepend Prepend default value
|
|
* @return array
|
|
*/
|
|
public function getColumnStats($project_id, $prepend = false)
|
|
{
|
|
$listing = $this->db
|
|
->hashtable(TaskModel::TABLE)
|
|
->eq('project_id', $project_id)
|
|
->eq('is_active', 1)
|
|
->groupBy('column_id')
|
|
->getAll('column_id', 'COUNT(*) AS total');
|
|
|
|
return $prepend ? array(-1 => t('All columns')) + $listing : $listing;
|
|
}
|
|
}
|