看板初始化提交

This commit is contained in:
zephyr
2026-06-01 21:23:12 -07:00
commit 54a842f4ab
2104 changed files with 241695 additions and 0 deletions
+54
View File
@@ -0,0 +1,54 @@
<?php
namespace Kanboard\Model;
/**
* Project Metadata
*
* @package Kanboard\Model
* @author Frederic Guillot
*/
class ProjectMetadataModel extends MetadataModel
{
/**
* 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;
}
}