mirror of
https://github.com/YunoHost-Apps/kanboard_ynh.git
synced 2024-09-03 19:36:17 +02:00
79 lines
1.8 KiB
PHP
79 lines
1.8 KiB
PHP
<?php
|
|
|
|
namespace ServiceProvider;
|
|
|
|
use Model\Config;
|
|
use Model\Project;
|
|
use Model\Webhook;
|
|
use Pimple\Container;
|
|
use Pimple\ServiceProviderInterface;
|
|
|
|
class ClassProvider implements ServiceProviderInterface
|
|
{
|
|
private $classes = array(
|
|
'Model' => array(
|
|
'Acl',
|
|
'Action',
|
|
'Authentication',
|
|
'Board',
|
|
'Category',
|
|
'Color',
|
|
'Comment',
|
|
'Config',
|
|
'DateParser',
|
|
'File',
|
|
'LastLogin',
|
|
'Notification',
|
|
'Project',
|
|
'ProjectActivity',
|
|
'ProjectAnalytic',
|
|
'ProjectDailySummary',
|
|
'ProjectPaginator',
|
|
'ProjectPermission',
|
|
'SubTask',
|
|
'SubtaskPaginator',
|
|
'SubtaskExport',
|
|
'Swimlane',
|
|
'Task',
|
|
'TaskCreation',
|
|
'TaskDuplication',
|
|
'TaskExport',
|
|
'TaskFinder',
|
|
'TaskModification',
|
|
'TaskPaginator',
|
|
'TaskPermission',
|
|
'TaskPosition',
|
|
'TaskStatus',
|
|
'TaskValidator',
|
|
'TimeTracking',
|
|
'User',
|
|
'UserSession',
|
|
'Webhook',
|
|
),
|
|
'Core' => array(
|
|
'Template',
|
|
'Session',
|
|
'MemoryCache',
|
|
'FileCache',
|
|
),
|
|
'Integration' => array(
|
|
'GitlabWebhook',
|
|
'GithubWebhook',
|
|
)
|
|
);
|
|
|
|
public function register(Container $container)
|
|
{
|
|
foreach ($this->classes as $namespace => $classes) {
|
|
|
|
foreach ($classes as $name) {
|
|
|
|
$class = '\\'.$namespace.'\\'.$name;
|
|
|
|
$container[lcfirst($name)] = function ($c) use ($class) {
|
|
return new $class($c);
|
|
};
|
|
}
|
|
}
|
|
}
|
|
}
|