diff options
author | Frederic Guillot <fred@kanboard.net> | 2016-05-28 19:48:22 -0400 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2016-05-28 19:48:22 -0400 |
commit | 14713b0ec7ed93ca45578da069ad4e19a7d8addf (patch) | |
tree | 79972d53f6091a1ddb17f64a6a05a5523f5d5168 /app/Model/ProjectMetadata.php | |
parent | 936376ffe74c583d3cb819e98f53a85137fdf8bc (diff) |
Rename all models
Diffstat (limited to 'app/Model/ProjectMetadata.php')
-rw-r--r-- | app/Model/ProjectMetadata.php | 56 |
1 files changed, 0 insertions, 56 deletions
diff --git a/app/Model/ProjectMetadata.php b/app/Model/ProjectMetadata.php deleted file mode 100644 index c8e4fe63..00000000 --- a/app/Model/ProjectMetadata.php +++ /dev/null @@ -1,56 +0,0 @@ -<?php - -namespace Kanboard\Model; - -use Kanboard\Core\Base; - -/** - * Project Metadata - * - * @package model - * @author Frederic Guillot - */ -class ProjectMetadata extends Metadata -{ - /** - * Get the table - * - * @abstract - * @access protected - * @return string - */ - protected function getTable() - { - return 'project_has_metadata'; - } - - /** - * Define the entity key - * - * @access protected - * @return string - */ - protected function getEntityKey() - { - return 'project_id'; - } - - /** - * Helper method to duplicate all metadata to another project - * - * @access public - * @param integer $src_project_id - * @param integer $dst_project_id - * @return boolean - */ - public function duplicate($src_project_id, $dst_project_id) - { - $metadata = $this->getAll($src_project_id); - - if (! $this->save($dst_project_id, $metadata)) { - return false; - } - - return true; - } -} |