Kanboard-Prod/app/Model/ProjectMetadata.php

57 lines
1011 B
PHP

<?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;
}
}