mirror of
https://github.com/YunoHost-Apps/kanboard_ynh.git
synced 2024-09-03 19:36:17 +02:00
66 lines
1 KiB
PHP
66 lines
1 KiB
PHP
<?php
|
|
|
|
namespace Kanboard\Group;
|
|
|
|
use Kanboard\Core\Group\GroupProviderInterface;
|
|
|
|
/**
|
|
* Database Group Provider
|
|
*
|
|
* @package group
|
|
* @author Frederic Guillot
|
|
*/
|
|
class DatabaseGroupProvider implements GroupProviderInterface
|
|
{
|
|
/**
|
|
* Group properties
|
|
*
|
|
* @access private
|
|
* @var array
|
|
*/
|
|
private $group = array();
|
|
|
|
/**
|
|
* Constructor
|
|
*
|
|
* @access public
|
|
* @param array $group
|
|
*/
|
|
public function __construct(array $group)
|
|
{
|
|
$this->group = $group;
|
|
}
|
|
|
|
/**
|
|
* Get internal id
|
|
*
|
|
* @access public
|
|
* @return integer
|
|
*/
|
|
public function getInternalId()
|
|
{
|
|
return (int) $this->group['id'];
|
|
}
|
|
|
|
/**
|
|
* Get external id
|
|
*
|
|
* @access public
|
|
* @return string
|
|
*/
|
|
public function getExternalId()
|
|
{
|
|
return '';
|
|
}
|
|
|
|
/**
|
|
* Get group name
|
|
*
|
|
* @access public
|
|
* @return string
|
|
*/
|
|
public function getName()
|
|
{
|
|
return $this->group['name'];
|
|
}
|
|
}
|