看板初始化提交
This commit is contained in:
@@ -0,0 +1,71 @@
|
||||
<?php
|
||||
|
||||
namespace Kanboard\Core\Group;
|
||||
|
||||
/**
|
||||
* Group Manager
|
||||
*
|
||||
* @package Kanboard\Core\Group
|
||||
* @author Frederic Guillot
|
||||
*/
|
||||
class GroupManager
|
||||
{
|
||||
/**
|
||||
* List of backend providers
|
||||
*
|
||||
* @access protected
|
||||
* @var array
|
||||
*/
|
||||
protected $providers = array();
|
||||
|
||||
/**
|
||||
* Register a new group backend provider
|
||||
*
|
||||
* @access public
|
||||
* @param GroupBackendProviderInterface $provider
|
||||
* @return GroupManager
|
||||
*/
|
||||
public function register(GroupBackendProviderInterface $provider)
|
||||
{
|
||||
$this->providers[] = $provider;
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* Find a group from a search query
|
||||
*
|
||||
* @access public
|
||||
* @param string $input
|
||||
* @return GroupProviderInterface[]
|
||||
*/
|
||||
public function find($input)
|
||||
{
|
||||
$groups = array();
|
||||
|
||||
foreach ($this->providers as $provider) {
|
||||
$groups = array_merge($groups, $provider->find($input));
|
||||
}
|
||||
|
||||
return $this->removeDuplicates($groups);
|
||||
}
|
||||
|
||||
/**
|
||||
* Remove duplicated groups
|
||||
*
|
||||
* @access protected
|
||||
* @param array $groups
|
||||
* @return GroupProviderInterface[]
|
||||
*/
|
||||
protected function removeDuplicates(array $groups)
|
||||
{
|
||||
$result = array();
|
||||
|
||||
foreach ($groups as $group) {
|
||||
if (! isset($result[$group->getName()])) {
|
||||
$result[$group->getName()] = $group;
|
||||
}
|
||||
}
|
||||
|
||||
return array_values($result);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user