Rename Api classes

This commit is contained in:
Frederic Guillot
2016-05-16 21:07:29 -04:00
parent 4514bc1d4b
commit b1e2ca00ce
21 changed files with 104 additions and 79 deletions

51
app/Api/CategoryApi.php Normal file
View File

@@ -0,0 +1,51 @@
<?php
namespace Kanboard\Api;
use Kanboard\Core\Base;
/**
* Category API controller
*
* @package Kanboard\Api
* @author Frederic Guillot
*/
class CategoryApi extends Base
{
public function getCategory($category_id)
{
return $this->category->getById($category_id);
}
public function getAllCategories($project_id)
{
return $this->category->getAll($project_id);
}
public function removeCategory($category_id)
{
return $this->category->remove($category_id);
}
public function createCategory($project_id, $name)
{
$values = array(
'project_id' => $project_id,
'name' => $name,
);
list($valid, ) = $this->categoryValidator->validateCreation($values);
return $valid ? $this->category->create($values) : false;
}
public function updateCategory($id, $name)
{
$values = array(
'id' => $id,
'name' => $name,
);
list($valid, ) = $this->categoryValidator->validateModification($values);
return $valid && $this->category->update($values);
}
}