-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig_index_configurations.php
36 lines (29 loc) · 1.05 KB
/
config_index_configurations.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<?php
/**
* @subpackage : Wordpress
* @author : Jonathon Byrd
* @copyright : All Rights Reserved, Byrd Inc. 2009
* @link : http://www.jonathonbyrd.com
*
* Jonathon Byrd is a freelance developer for hire. Jonathon has owned many companies and
* understands the importance of website credibility. Contact Jonathon Today.
*
*/
// Check to ensure this file is within the rest of the framework
defined('_EXEC') or die();
$config = new byrdConfigRoles();
$config->getCss();
$config->getJs();
?>
<form action="" method="post">
<div class="byrdtabs">
<ul id="sidemenu">
<li><a href="#documentation" class="tablink">Documentation</a></li>
<li><a href="#support" class="tablink">Support Forum</a></li>
</ul>
</div>
<div style="display:block;height:1px;line-height:1px;clear:both;"></div>
<div class="tabdiv" id="documentation"><?php $config->getDocumentation(); ?></div>
<div class="tabdiv" id="support"><?php $config->getSupport(); ?></div>
<input type="submit" name="submit" value="Update Options" style="position:relative;float:right;" />
</form>