Esempio n. 1
0
 public function Home()
 {
     $this->Processor->SetUpPaths($this->getModel(), $this->getModule(), "userhome");
     $tmp = BasicAuthService::EntryPointCheck();
     if ($tmp !== true) {
         ASPM::Fold($tmp);
     } else {
         $this->Processor->RenderView();
     }
 }
Esempio n. 2
0
 private function UnknownRoute($M = null, $m = null)
 {
     if (isset($M) && isset($m) && !is_null($M) && !is_null($m)) {
         ASPM::Fold("Your request attempted access into an unknown place with a path of<br /><strong>..../{$M}/{$m}/</strong>");
     } else {
         ASPM::Fold("The location you have requested does not exist");
     }
 }
Esempio n. 3
0
<?php

include_once "App/Views/htmlheadmeta.php";
include_once "App/Views/mainheader.php";
include_once "App/Views/mainmenu.php";
if (isset($GLOBALS["App"]["View"]) && strlen($GLOBALS["App"]["View"]) > 1 && file_exists($GLOBALS["App"]["View"])) {
    include_once $GLOBALS["App"]["View"];
} else {
    ASPM::Fold("Error Listing Projects");
}
include_once "App/Views/mainfooter.php";
echo <<<FOOTR
\t\t\t\t<!---------------------------------------------------------------------
\t\t\t\t-------      An       Arbor        Solutions      Production    -------
\t\t\t\t-------    software  designed  to  help  your  business  and    -------
\t\t\t\t-------                    organization grow                    -------
\t\t\t\t---------------------------------------------------------------------!>
</html>
FOOTR
;