PHP Classes

File: web/SSO/modules/metaedit/templates/xmlimport.tpl.php

Recommend this page to a friend!
  Classes of william amed   Raptor 2   web/SSO/modules/metaedit/templates/xmlimport.tpl.php   Download  
File: web/SSO/modules/metaedit/templates/xmlimport.tpl.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,036 bytes
 

Contents

Class file image Download
<?php

// $this->data['jquery'] = array('version' => '1.6', 'core' => TRUE, 'ui' => TRUE, 'css' => TRUE);
// $this->data['head'] = '<link rel="stylesheet" type="text/css" href="/' . $this->data['baseurlpath'] . 'module.php/metaedit/resources/style.css" />' . "\n";
// $this->data['head'] .= '<script type="text/javascript">
// $(document).ready(function() {
// $("#tabdiv").tabs();
// });
// </script>';

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


echo(
'<h1>Import SAML 2.0 XML Metadata</h1>');

echo(
'<form method="post" action="edit.php">');
echo(
'<p>Paste in SAML 2.0 XML Metadata for the entity that you would like to add.</p>');
echo(
'<textarea style="height: 200px; width: 90%; border: 1px solid #aaa;" cols="50" rows="5" name="xmlmetadata"></textarea>');
echo(
'<input type="submit" style="margin-top: .5em" name="metasubmit" value="Import metadata" />');
echo(
'</form>');


echo(
'<p style="float: right"><a href="index.php">Return to entity listing</a></p>');

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