update filemanager view, add filemanager into tinymce
This commit is contained in:
parent
78b8fc22d2
commit
35d04cc0b6
36 changed files with 723 additions and 185 deletions
21
core/Repository/FileInformationRepository.php
Normal file
21
core/Repository/FileInformationRepository.php
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
<?php
|
||||
|
||||
namespace App\Core\Repository;
|
||||
|
||||
use App\Core\Entity\FileInformation;
|
||||
use Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepository;
|
||||
use Doctrine\Persistence\ManagerRegistry;
|
||||
|
||||
/**
|
||||
* @method FileInformation|null find($id, $lockMode = null, $lockVersion = null)
|
||||
* @method FileInformation|null findOneBy(array $criteria, array $orderBy = null)
|
||||
* @method FileInformation[] findAll()
|
||||
* @method FileInformation[] findBy(array $criteria, array $orderBy = null, $limit = null, $offset = null)
|
||||
*/
|
||||
class FileInformationRepository extends ServiceEntityRepository
|
||||
{
|
||||
public function __construct(ManagerRegistry $registry)
|
||||
{
|
||||
parent::__construct($registry, FileInformation::class);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue