provider.form.php 350 B

123456789101112131415
  1. <?php
  2. include ('../../../inc/includes.php');
  3. if ($_SESSION["glpiactiveprofile"]["interface"] == "central") {
  4. Html::header("TITRE", $_SERVER['PHP_SELF'],"plugins","pluginexampleexample","");
  5. } else {
  6. Html::helpHeader("TITRE", $_SERVER['PHP_SELF']);
  7. }
  8. $example = new PluginSinglesignonProvider();
  9. $example->display($_GET);
  10. Html::footer();
  11. ?>