-
Notifications
You must be signed in to change notification settings - Fork 125
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(question): new hooks for other plugins interaction (#3093)
- Loading branch information
1 parent
810c854
commit f9a23b6
Showing
5 changed files
with
157 additions
and
64 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
<?php | ||
/** | ||
* --------------------------------------------------------------------- | ||
* Formcreator is a plugin which allows creation of custom forms of | ||
* easy access. | ||
* --------------------------------------------------------------------- | ||
* LICENSE | ||
* | ||
* This file is part of Formcreator. | ||
* | ||
* Formcreator is free software; you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
* the Free Software Foundation; either version 2 of the License, or | ||
* (at your option) any later version. | ||
* | ||
* Formcreator 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 General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU General Public License | ||
* along with Formcreator. If not, see <http://www.gnu.org/licenses/>. | ||
* --------------------------------------------------------------------- | ||
* @copyright Copyright © 2011 - 2021 Teclib' | ||
* @license http://www.gnu.org/licenses/gpl.txt GPLv3+ | ||
* @link https://github.com/pluginsGLPI/formcreator/ | ||
* @link https://pluginsglpi.github.io/formcreator/ | ||
* @link http://plugins.glpi-project.org/#/plugin/formcreator | ||
* --------------------------------------------------------------------- | ||
*/ | ||
|
||
if (!defined('GLPI_ROOT')) { | ||
die("Sorry. You can't access this file directly"); | ||
} | ||
|
||
interface PluginFormcreatorPluginTargetInterface | ||
{ | ||
const ACTOR_TYPE_USER = 1; | ||
const ACTOR_TYPE_GROUP = 2; | ||
|
||
public static function getId(): int; | ||
public static function getLabel(): string; | ||
public static function getForm(PluginFormcreatorForm $form): string; | ||
public static function getDisplayedValue($value): string; | ||
public static function getActorType(): int; | ||
public static function getActorId(PluginFormcreatorFormAnswer $formanswer, int $value): int; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters