diff options
author | Frederic Guillot <fred@kanboard.net> | 2016-05-16 21:07:29 -0400 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2016-05-16 21:07:29 -0400 |
commit | b1e2ca00ce7375ffcbe5e927135c8892036e6bd6 (patch) | |
tree | 07ce453261f6493de7c901cfd8b4f0d9af85556d /app/Api/CategoryApi.php | |
parent | 4514bc1d4b4abff23902e46da76e70f13a3647eb (diff) |
Rename Api classes
Diffstat (limited to 'app/Api/CategoryApi.php')
-rw-r--r-- | app/Api/CategoryApi.php | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/app/Api/CategoryApi.php b/app/Api/CategoryApi.php new file mode 100644 index 00000000..7c5d3bfb --- /dev/null +++ b/app/Api/CategoryApi.php @@ -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); + } +} |