Пример #1
0
 public function __construct()
 {
     parent::__construct();
     $this->classBuilder = new BuildClass();
     $this->extends_class = "CI_Model";
 }
Пример #2
0
<?php

// Check to see if OneXPage and if signed on
require 'Includes/RSSUtilities.php';
require 'Includes/HTMLBuildClass.php';
$A = new BuildClass();
switch (strtoupper($_GET['p'])) {
    case 'OXP_DELPAGE':
        $formModeInd = 'OXP_DELPAGE';
        break;
    case 'OXP':
        $formModeInd = 'OXP';
        break;
    default:
        $formModeInd = $_POST["formModeInd"];
}
if ($_POST["formModeInd"] == 'TENNANTSIGNIN' || $_POST["formModeInd"] == 'EXISTINGACCT' || $_POST["formModeInd"] == 'OXP_WALLMESSAGE') {
    $formModeInd = $_POST["formModeInd"];
}
$ReqFunc = $formModeInd;
if (strlen($ReqFunc) < 1) {
    $ReqFunc = $_GET['p'];
}
$bLoggedIn = FALSE;
$A->CheckForCredentials($ReqFunc);
if (strlen($formModeInd) > 0) {
    require 'Includes/DBUpdates.php';
}
$A->BuildTopHTML($ReqFunc);
// Process any informational or error messages
$A->fProcQMsg();