mirror of
https://github.com/nextcloud/richdocuments.git
synced 2025-12-18 05:20:43 +01:00
chore: add ImageManager to php stub
Signed-off-by: Elizabeth Danzberger <lizzy7128@tutanota.de>
This commit is contained in:
parent
6b2d1b2070
commit
8cbdbf8357
1 changed files with 29 additions and 0 deletions
|
|
@ -82,6 +82,35 @@ namespace OCA\Files_Sharing\Event {
|
|||
}
|
||||
}
|
||||
|
||||
namespace OCA\Theming {
|
||||
use OCA\Theming\Service\BackgroundService;
|
||||
use OCA\Files\IAppData;
|
||||
use OCP\ICacheFactory;
|
||||
use OCP\IConfig;
|
||||
use OCP\ITempManager;
|
||||
use OCP\IURLGenerator;
|
||||
use PSR\Log\LoggerInterface;
|
||||
|
||||
class ImageManager {
|
||||
public function __construct(
|
||||
IConfig $config,
|
||||
IAppData $appData,
|
||||
IURLGenerator $urlGenerator,
|
||||
ICacheFactory $cacheFactory,
|
||||
LoggerInterface $logger,
|
||||
ITempManager $tempManager,
|
||||
BackgroundService $backgroundService
|
||||
) {
|
||||
}
|
||||
|
||||
public function hasImage(string $key): bool {
|
||||
}
|
||||
|
||||
public function getImageUrlAbsolute(string $key): string {
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
class OC_Helper {
|
||||
public static function getFileTemplateManager() {
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue