Skip to content
Snippets Groups Projects
Commit c018e0bb authored by Jan-Hendrik Willms's avatar Jan-Hendrik Willms
Browse files

remove unused RangeTreeIndex route, fixes #4397

Closes #4397

Merge request studip/studip!3280
parent 647c77c1
No related branches found
No related tags found
No related merge requests found
<?php
namespace JsonApi\Routes\RangeTree;
use Psr\Http\Message\ServerRequestInterface as Request;
use Psr\Http\Message\ResponseInterface as Response;
use JsonApi\Errors\AuthorizationFailedException;
use JsonApi\Errors\RecordNotFoundException;
use JsonApi\JsonApiController;
/**
* Zeigt eine bestimmte Veranstaltung an.
*/
class RangeTreeIndex extends JsonApiController
{
protected $allowedIncludePaths = [
'children',
'courses',
'institute',
'parent',
];
protected $allowedPagingParameters = ['offset', 'limit'];
/**
* @SuppressWarnings(PHPMD.UnusedFormalParameter)
*/
public function __invoke(Request $request, Response $response, $args)
{
$tree = \TreeAbstract::getInstance('StudipSemTree', ['visible_only' => 1]);
$studyAreas = self::mapTree('root', $tree);
list($offset, $limit) = $this->getOffsetAndLimit();
return $this->getPaginatedContentResponse(
array_slice($studyAreas, $offset, $limit),
count($studyAreas)
);
}
private function mapTree($parentId, &$tree)
{
$level = [];
$kids = $tree->getKids($parentId);
if (is_array($kids) && count($kids) > 0) {
foreach ($kids as $kid) {
$level[] = \StudipStudyArea::find($kid);
$level = array_merge($level, self::mapTree($kid, $tree));
}
}
return $level;
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment