Add task and project API formatters
This commit is contained in:
38
app/Formatter/ProjectsApiFormatter.php
Normal file
38
app/Formatter/ProjectsApiFormatter.php
Normal file
@@ -0,0 +1,38 @@
|
||||
<?php
|
||||
|
||||
namespace Kanboard\Formatter;
|
||||
|
||||
use Kanboard\Core\Filter\FormatterInterface;
|
||||
|
||||
/**
|
||||
* Class ProjectsApiFormatter
|
||||
*
|
||||
* @package Kanboard\Formatter
|
||||
*/
|
||||
class ProjectsApiFormatter extends BaseFormatter implements FormatterInterface
|
||||
{
|
||||
protected $projects = array();
|
||||
|
||||
public function withProjects($projects)
|
||||
{
|
||||
$this->projects = $projects;
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* Apply formatter
|
||||
*
|
||||
* @access public
|
||||
* @return mixed
|
||||
*/
|
||||
public function format()
|
||||
{
|
||||
if (! empty($this->projects)) {
|
||||
foreach ($this->projects as &$project) {
|
||||
$project = $this->projectApiFormatter->withProject($project)->format();
|
||||
}
|
||||
}
|
||||
|
||||
return $this->projects;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user