%PDF- %PDF-
Direktori : /www/old2/_muzikoterapie/uloziste.eacm.cz/apps/files_external/lib/Lib/ |
Current File : /www/old2/_muzikoterapie/uloziste.eacm.cz/apps/files_external/lib/Lib/IFrontendDefinition.php |
<?php /** * @copyright 2022 Carl Schwan <carl@carlschwan.eu> * * @license AGPL-3.0-or-later * * This code is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License, version 3, * as published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License, version 3, * along with this program. If not, see <http://www.gnu.org/licenses/> * */ namespace OCA\Files_External\Lib; interface IFrontendDefinition { public function getText(): string; public function setText(string $text): self; /** * @return array<string, DefinitionParameter> */ public function getParameters(): array; /** * @param list<DefinitionParameter> $parameters */ public function addParameters(array $parameters): self; public function addParameter(DefinitionParameter $parameter): self; /** * @return string[] */ public function getCustomJs(): array; public function addCustomJs(string $custom): self; /** * Serialize into JSON for client-side JS */ public function jsonSerializeDefinition(): array; /** * Check if parameters are satisfied in a StorageConfig */ public function validateStorageDefinition(StorageConfig $storage): bool; }