PHP Classes

File: web/SSO/modules/preprodwarning/templates/warning.php

Recommend this page to a friend!
  Classes of william amed   Raptor 2   web/SSO/modules/preprodwarning/templates/warning.php   Download  
File: web/SSO/modules/preprodwarning/templates/warning.php
Role: Example script
Content type: text/plain
Description: Example script
Class: Raptor 2
Framework that takes routes from annotations
Author: By
Last change:
Date: 8 years ago
Size: 1,464 bytes
 

Contents

Class file image Download
<?php

/**
 * Template form for giving consent.
 *
 * Parameters:
 * - 'srcMetadata': Metadata/configuration for the source.
 * - 'dstMetadata': Metadata/configuration for the destination.
 * - 'yesTarget': Target URL for the yes-button. This URL will receive a POST request.
 * - 'yesData': Parameters which should be included in the yes-request.
 * - 'noTarget': Target URL for the no-button. This URL will receive a GET request.
 * - 'noData': Parameters which should be included in the no-request.
 * - 'attributes': The attributes which are about to be released.
 * - 'sppp': URL to the privacy policy of the destination, or FALSE.
 *
 * @package simpleSAMLphp
 */


$this->data['header'] = $this->t('{preprodwarning:warning:warning_header}');
$this->data['autofocus'] = 'yesbutton';

$this->includeAtTemplateBase('includes/header.php');

?>

<form style="display: inline; margin: 0px; padding: 0px" action="<?php echo htmlspecialchars($this->data['yesTarget']); ?>">

    <?php
       
// Embed hidden fields...
       
foreach ($this->data['yesData'] as $name => $value) {
            echo(
'<input type="hidden" name="' . htmlspecialchars($name) . '" value="' . htmlspecialchars($value) . '" />');
        }
   
?>
<p><?php echo $this->t('{preprodwarning:warning:warning}'); ?></p>

    <input type="submit" name="yes" id="yesbutton" value="<?php echo htmlspecialchars($this->t('{preprodwarning:warning:yes}')) ?>" />

</form>


<?php

$this
->includeAtTemplateBase('includes/footer.php');
?>