Added Tenant code for PHP port

This commit is contained in:
Michael Becker 2014-04-16 19:37:38 -04:00
parent 7387ab4a6a
commit 3490cfe5bb
3 changed files with 114 additions and 0 deletions

View File

@ -0,0 +1,49 @@
<html>
<head>
<link rel="stylesheet" type="text/css" href="http://static.alcehosting.net/dropins/WebFramework/StyleSheets/Main.css" />
<link rel="stylesheet" type="text/css" href="http://static.alcehosting.net/dropins/WebFramework/StyleSheets/Workday/Main.css" />
<script src="http://static.alcehosting.net/dropins/WebFramework/Scripts/TabContainer.js"></script>
</head>
<body>
<h1>Modify Data Format</h1>
<h2>Slightly Mad Studios BFF archive</h2>
<form method="POST">
<table style="width: 100%;">
<tr>
<td style="width: 128px;"><label for="txtTitle">Data Format Title: </label></td>
<td><input type="text" id="txtTitle" name="dataformat_Title" value="Slightly Mad Studios BFF archive" /></td>
</tr>
<tr>
<td><label for="txtParent">Parent Data Format: </label></td>
<td><select id="txtParent" name="dataformat_Parent"></select></td>
</tr>
</table>
<div class="TabContainer" id="TabContainer_tbsTabs">
<div class="TabContainerTabs" id="TabContainer_tbsTabs_Tabs">
<a href="#" id="TabContainer_tbsTabs_Tab_tabImport">Import</a>
<a href="#" id="TabContainer_tbsTabs_Tab_tabExport">Export</a>
</div>
<div class="TabContainerTabContents" id="TabContainer_tbsTabs_TabContents">
<div class="TabContainerTabContent" id="TabContainer_tbsTabs_TabContent_tabImport">
<table style="width: 100%;">
<tr>
<th>Data type</th>
<th>Title</th>
</tr>
<tr>
<td><a href="#">String</a></td>
<td>Encryption key</td>
</tr>
</table>
</div>
</div>
</div>
<script type="text/javascript">
var tbsTabs = new TabContainer("tbsTabs");
tbsTabs.SetSelectedTab(tbsTabs.GetTabByID("tabImport"));
</script>
</form>
</body>
</html>

View File

@ -0,0 +1,29 @@
<html>
<head>
<link rel="stylesheet" type="text/css" href="http://static.alcehosting.net/dropins/WebFramework/StyleSheets/Main.css" />
<link rel="stylesheet" type="text/css" href="http://static.alcehosting.net/dropins/WebFramework/StyleSheets/Workday/Main.css" />
</head>
<body>
<h1>Modify Data Format</h1>
<h2>Slightly Mad Studios BFF archive</h2>
<wfx:TabContainer ID="tbsTabs">
<wfx:TabPage ID="tabImport" Title="Import">
<wfx:ListView ID="lvImportOptions">
<Columns>
<wfx:ListViewColumn Name="lvcType" Title="Field type" />
<wfx:ListViewColumn Name="lvcTitle" Title="Title" />
</Columns>
</wfx:ListView>
</wfx:TabPage>
<wfx:TabPage ID="tabImport" Title="Export">
<wfx:ListView ID="lvExportOptions">
<Columns>
<wfx:ListViewColumn Name="lvcType" Title="Field type" />
<wfx:ListViewColumn Name="lvcTitle" Title="Title" />
</Columns>
</wfx:ListView>
</wfx:TabPage>
</wfx:TabContainer>
</body>
</html>

View File

@ -0,0 +1,36 @@
<html>
<head>
<link rel="stylesheet" type="text/css" href="http://static.alcehosting.net/dropins/WebFramework/StyleSheets/Main.css" />
<link rel="stylesheet" type="text/css" href="http://static.alcehosting.net/dropins/WebFramework/StyleSheets/Workday/Main.css" />
</head>
<body>
<h1>Modify Enumeration</h1>
<h2>Slightly Mad Studios BFF Encryption Mode</h2>
<h3>Possible values:</h3>
<wfx:ListView ID="lvEnumeratedValues">
<Columns>
<wfx:ListViewColumn Name="lvcName" Title="Name" />
<wfx:ListViewColumn Name="lvcValue" Title="Value" />
</Columns>
<Records>
<wfx:ListViewRecord>
<Columns>
<wfx:ListViewColumn Name="lvcName" Value="None" />
<wfx:ListViewColumn Name="lvcValue" Value="0" />
</Columns>
</wfx:ListViewRecord>
<wfx:ListViewRecord>
<Columns>
<wfx:ListViewColumn Name="lvcName" Value="RC4" />
<wfx:ListViewColumn Name="lvcValue" Value="1" />
</Columns>
</wfx:ListViewRecord>
</Records>
</wfx:ListView>
<div class="Buttons">
<a href="#">Save Changes</a>
</div>
</body>
</html>