!C99Shell v. 1.0 pre-release build #16!

Software: Apache/2.0.54 (Fedora). PHP/5.0.4 

uname -a: Linux mina-info.me 2.6.17-1.2142_FC4smp #1 SMP Tue Jul 11 22:57:02 EDT 2006 i686 

uid=48(apache) gid=48(apache) groups=48(apache)
context=system_u:system_r:httpd_sys_script_t
 

Safe-mode: OFF (not secure)

/home/mnnews/public_html/mina/promonte/   drwxr-xr-x
Free 3.94 GB of 27.03 GB (14.58%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     informacij_maint2.php (23.45 KB)      -rwxr-xr-x
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
//Include Common Files @1-5471E0F2
define("RelativePath", ".");
include(
RelativePath . "/Common.php");
include(
RelativePath . "/Template.php");
include(
RelativePath . "/Sorter.php");
include(
RelativePath . "/Navigator.php");
  
//End Include Common Files

//Include Page implementation @17-39DC296A
include_once("./Header.php");
//End Include Page implementation

Class clsRecordinformacije { //informacije Class @2-79225B23

//Variables @2-4A82E0A3

    // Public variables
    
var $ComponentName;
    var
$HTMLFormAction;
    var
$PressedButton;
    var
$Errors;
    var
$ErrorBlock;
    var
$FormSubmitted;
    var
$FormEnctype;
    var
$Visible;
    var
$Recordset;

    var
$CCSEvents = "";
    var
$CCSEventResult;

    var
$InsertAllowed;
    var
$UpdateAllowed;
    var
$DeleteAllowed;
    var
$ds;
    var
$EditMode;
    var
$ValidatingControls;
    var
$Controls;

    
// Class variables
//End Variables

//Class_Initialize Event @2-0ED2112D
    
function clsRecordinformacije()
    {

        global
$FileName;
        
$this->Visible = true;
        
$this->Errors = new clsErrors();
        
$this->ErrorBlock = "Record informacije/Error";
        
$this->ds = new clsinformacijeDataSource();
        
$this->InsertAllowed = true;
        
$this->UpdateAllowed = true;
        
$this->DeleteAllowed = true;
        if(
$this->Visible)
        {
            
$this->ComponentName = "informacije";
            
$CCSForm = split(":", CCGetFromGet("ccsForm", ""), 2);
            if(
sizeof($CCSForm) == 1)
                
$CCSForm[1] = "";
            list(
$FormName, $FormMethod) = $CCSForm;
            
$this->EditMode = ($FormMethod == "Edit");
            
$this->FormEnctype = "application/x-www-form-urlencoded";
            
$this->FormSubmitted = ($FormName == $this->ComponentName);
            
$Method = $this->FormSubmitted ? ccsPost : ccsGet;
            
$this->naslov = new clsControl(ccsTextArea, "naslov", "Naslov", ccsMemo, "", CCGetRequestParam("naslov", $Method));
            
$this->naslov->Required = true;
            
$this->tekst = new clsControl(ccsTextArea, "tekst", "Tekst", ccsMemo, "", CCGetRequestParam("tekst", $Method));
            
$this->tekst->Required = true;
            
$this->Label1 = new clsControl(ccsTextBox, "Label1", "Label1", ccsDate, Array("dd", "/", "mm", "/", "yyyy"), CCGetRequestParam("Label1", $Method));
            
$this->DatePicker1 = new clsDatePicker("DatePicker1", "informacije", "Label1");
            
$this->ListBox1 = new clsControl(ccsListBox, "ListBox1", "ListBox1", ccsText, "", CCGetRequestParam("ListBox1", $Method));
            
$this->ListBox1->DSType = dsTable;
            list(
$this->ListBox1->BoundColumn, $this->ListBox1->TextColumn, $this->ListBox1->DBFormat) = array("idslike", "nazivslike", "");
            
$this->ListBox1->ds = new clsDBConnection1();
            
$this->ListBox1->ds->SQL = "SELECT *  " .
"FROM slike";
            
$this->rubrika = new clsControl(ccsListBox, "rubrika", "Rubrika", ccsInteger, "", CCGetRequestParam("rubrika", $Method));
            
$this->rubrika->DSType = dsTable;
            list(
$this->rubrika->BoundColumn, $this->rubrika->TextColumn, $this->rubrika->DBFormat) = array("idrubrike", "nazivrubr", "");
            
$this->rubrika->ds = new clsDBConnection1();
            
$this->rubrika->ds->SQL = "SELECT *  " .
"FROM rubrike";
            
$this->rubrika->Required = true;
            
$this->CheckBox1 = new clsControl(ccsCheckBox, "CheckBox1", "CheckBox1", ccsInteger, "", CCGetRequestParam("CheckBox1", $Method));
            
$this->CheckBox1->CheckedValue = $this->CheckBox1->GetParsedValue(1);
            
$this->CheckBox1->UncheckedValue = $this->CheckBox1->GetParsedValue(0);
            
$this->CheckBox2 = new clsControl(ccsCheckBox, "CheckBox2", "CheckBox2", ccsInteger, "", CCGetRequestParam("CheckBox2", $Method));
            
$this->CheckBox2->CheckedValue = $this->CheckBox2->GetParsedValue(2);
            
$this->CheckBox2->UncheckedValue = $this->CheckBox2->GetParsedValue(0);
            
$this->link = new clsControl(ccsTextBox, "link", "Link", ccsMemo, "", CCGetRequestParam("link", $Method));
            
$this->Button_Insert = new clsButton("Button_Insert");
            
$this->Button_Update = new clsButton("Button_Update");
            
$this->Button_Delete = new clsButton("Button_Delete");
            if(!
$this->FormSubmitted) {
                if(!
is_array($this->Label1->Value) && !strlen($this->Label1->Value) && $this->Label1->Value !== false)
                
$this->Label1->SetValue(time());
            }
        }
    }
//End Class_Initialize Event

//Initialize Method @2-A45A202F
    
function Initialize()
    {

        if(!
$this->Visible)
            return;

        
$this->ds->Parameters["urlidvijesti"] = CCGetFromGet("idvijesti", "");
    }
//End Initialize Method

//Validate Method @2-1C7DD71B
    
function Validate()
    {
        
$Validation = true;
        
$Where = "";
        
$Validation = ($this->naslov->Validate() && $Validation);
        
$Validation = ($this->tekst->Validate() && $Validation);
        
$Validation = ($this->Label1->Validate() && $Validation);
        
$Validation = ($this->ListBox1->Validate() && $Validation);
        
$Validation = ($this->rubrika->Validate() && $Validation);
        
$Validation = ($this->CheckBox1->Validate() && $Validation);
        
$Validation = ($this->CheckBox2->Validate() && $Validation);
        
$Validation = ($this->link->Validate() && $Validation);
        
$this->CCSEventResult = CCGetEvent($this->CCSEvents, "OnValidate");
        return ((
$this->Errors->Count() == 0) && $Validation);
    }
//End Validate Method

//CheckErrors Method @2-496B883D
    
function CheckErrors()
    {
        
$errors = false;
        
$errors = ($errors || $this->naslov->Errors->Count());
        
$errors = ($errors || $this->tekst->Errors->Count());
        
$errors = ($errors || $this->Label1->Errors->Count());
        
$errors = ($errors || $this->DatePicker1->Errors->Count());
        
$errors = ($errors || $this->ListBox1->Errors->Count());
        
$errors = ($errors || $this->rubrika->Errors->Count());
        
$errors = ($errors || $this->CheckBox1->Errors->Count());
        
$errors = ($errors || $this->CheckBox2->Errors->Count());
        
$errors = ($errors || $this->link->Errors->Count());
        
$errors = ($errors || $this->Errors->Count());
        
$errors = ($errors || $this->ds->Errors->Count());
        return
$errors;
    }
//End CheckErrors Method

//Operation Method @2-7EC9D65D
    
function Operation()
    {
        if(!
$this->Visible)
            return;

        global
$Redirect;
        global
$FileName;

        
$this->ds->Prepare();
        
$this->EditMode = $this->ds->AllParametersSet;
        if(!
$this->FormSubmitted)
            return;

        if(
$this->FormSubmitted) {
            
$this->PressedButton = $this->EditMode ? "Button_Update" : "Button_Insert";
            if(
strlen(CCGetParam("Button_Insert", ""))) {
                
$this->PressedButton = "Button_Insert";
            } else if(
strlen(CCGetParam("Button_Update", ""))) {
                
$this->PressedButton = "Button_Update";
            } else if(
strlen(CCGetParam("Button_Delete", ""))) {
                
$this->PressedButton = "Button_Delete";
            }
        }
        
$Redirect = "informacij_list.php" . "?" . CCGetQueryString("QueryString", Array("ccsForm"));
        if(
$this->PressedButton == "Button_Delete") {
            if(!
CCGetEvent($this->Button_Delete->CCSEvents, "OnClick") || !$this->DeleteRow()) {
                
$Redirect = "";
            }
        } else if(
$this->Validate()) {
            if(
$this->PressedButton == "Button_Insert") {
                if(!
CCGetEvent($this->Button_Insert->CCSEvents, "OnClick") || !$this->InsertRow()) {
                    
$Redirect = "";
                }
            } else if(
$this->PressedButton == "Button_Update") {
                if(!
CCGetEvent($this->Button_Update->CCSEvents, "OnClick") || !$this->UpdateRow()) {
                    
$Redirect = "";
                }
            }
        } else {
            
$Redirect = "";
        }
    }
//End Operation Method

//InsertRow Method @2-A44EC339
    
function InsertRow()
    {
        
$this->CCSEventResult = CCGetEvent($this->CCSEvents, "BeforeInsert");
        if(!
$this->InsertAllowed) return false;
        
$this->ds->naslov->SetValue($this->naslov->GetValue());
        
$this->ds->tekst->SetValue($this->tekst->GetValue());
        
$this->ds->Label1->SetValue($this->Label1->GetValue());
        
$this->ds->ListBox1->SetValue($this->ListBox1->GetValue());
        
$this->ds->rubrika->SetValue($this->rubrika->GetValue());
        
$this->ds->CheckBox1->SetValue($this->CheckBox1->GetValue());
        
$this->ds->CheckBox2->SetValue($this->CheckBox2->GetValue());
        
$this->ds->link->SetValue($this->link->GetValue());
        
$this->ds->Insert();
        
$this->CCSEventResult = CCGetEvent($this->CCSEvents, "AfterInsert");
        if(
$this->ds->Errors->Count() > 0) {
            echo
"Error in Record " . $this->ComponentName . " / Insert Operation";
            
$this->ds->Errors->Clear();
            
$this->Errors->AddError("Database command error.");
        }
        return (!
$this->CheckErrors());
    }
//End InsertRow Method

//UpdateRow Method @2-844FBB11
    
function UpdateRow()
    {
        
$this->CCSEventResult = CCGetEvent($this->CCSEvents, "BeforeUpdate");
        if(!
$this->UpdateAllowed) return false;
        
$this->ds->naslov->SetValue($this->naslov->GetValue());
        
$this->ds->tekst->SetValue($this->tekst->GetValue());
        
$this->ds->Label1->SetValue($this->Label1->GetValue());
        
$this->ds->ListBox1->SetValue($this->ListBox1->GetValue());
        
$this->ds->rubrika->SetValue($this->rubrika->GetValue());
        
$this->ds->CheckBox1->SetValue($this->CheckBox1->GetValue());
        
$this->ds->CheckBox2->SetValue($this->CheckBox2->GetValue());
        
$this->ds->link->SetValue($this->link->GetValue());
        
$this->ds->Update();
        
$this->CCSEventResult = CCGetEvent($this->CCSEvents, "AfterUpdate");
        if(
$this->ds->Errors->Count() > 0) {
            echo
"Error in Record " . $this->ComponentName . " / Update Operation";
            
$this->ds->Errors->Clear();
            
$this->Errors->AddError("Database command error.");
        }
        return (!
$this->CheckErrors());
    }
//End UpdateRow Method

//DeleteRow Method @2-EA88835F
    
function DeleteRow()
    {
        
$this->CCSEventResult = CCGetEvent($this->CCSEvents, "BeforeDelete");
        if(!
$this->DeleteAllowed) return false;
        
$this->ds->Delete();
        
$this->CCSEventResult = CCGetEvent($this->CCSEvents, "AfterDelete");
        if(
$this->ds->Errors->Count() > 0) {
            echo
"Error in Record " . ComponentName . " / Delete Operation";
            
$this->ds->Errors->Clear();
            
$this->Errors->AddError("Database command error.");
        }
        return (!
$this->CheckErrors());
    }
//End DeleteRow Method

//Show Method @2-ED6DC2B6
    
function Show()
    {
        global
$Tpl;
        global
$FileName;
        
$Error = "";

        if(!
$this->Visible)
            return;

        
$this->CCSEventResult = CCGetEvent($this->CCSEvents, "BeforeSelect");

        
$this->ListBox1->Prepare();
        
$this->rubrika->Prepare();

        
$this->ds->open();

        
$RecordBlock = "Record " . $this->ComponentName;
        
$ParentPath = $Tpl->block_path;
        
$Tpl->block_path = $ParentPath . "/" . $RecordBlock;
        if(
$this->EditMode)
        {
            if(
$this->Errors->Count() == 0)
            {
                if(
$this->ds->Errors->Count() > 0)
                {
                    echo
"Error in Record informacije";
                }
                else if(
$this->ds->next_record())
                {
                    
$this->ds->SetValues();
                    if(!
$this->FormSubmitted)
                    {
                        
$this->naslov->SetValue($this->ds->naslov->GetValue());
                        
$this->tekst->SetValue($this->ds->tekst->GetValue());
                        
$this->Label1->SetValue($this->ds->Label1->GetValue());
                        
$this->ListBox1->SetValue($this->ds->ListBox1->GetValue());
                        
$this->rubrika->SetValue($this->ds->rubrika->GetValue());
                        
$this->CheckBox1->SetValue($this->ds->CheckBox1->GetValue());
                        
$this->CheckBox2->SetValue($this->ds->CheckBox2->GetValue());
                        
$this->link->SetValue($this->ds->link->GetValue());
                    }
                }
                else
                {
                    
$this->EditMode = false;
                }
            }
        }
        if(!
$this->FormSubmitted)
        {
        }

        if(
$this->FormSubmitted || $this->CheckErrors()) {
            
$Error .= $this->naslov->Errors->ToString();
            
$Error .= $this->tekst->Errors->ToString();
            
$Error .= $this->Label1->Errors->ToString();
            
$Error .= $this->DatePicker1->Errors->ToString();
            
$Error .= $this->ListBox1->Errors->ToString();
            
$Error .= $this->rubrika->Errors->ToString();
            
$Error .= $this->CheckBox1->Errors->ToString();
            
$Error .= $this->CheckBox2->Errors->ToString();
            
$Error .= $this->link->Errors->ToString();
            
$Error .= $this->Errors->ToString();
            
$Error .= $this->ds->Errors->ToString();
            
$Tpl->SetVar("Error", $Error);
            
$Tpl->Parse("Error", false);
        }
        
$CCSForm = $this->EditMode ? $this->ComponentName . ":" . "Edit" : $this->ComponentName;
        
$this->HTMLFormAction = $FileName . "?" . CCAddParam(CCGetQueryString("QueryString", ""), "ccsForm", $CCSForm);
        
$Tpl->SetVar("Action", $this->HTMLFormAction);
        
$Tpl->SetVar("HTMLFormName", $this->ComponentName);
        
$Tpl->SetVar("HTMLFormEnctype", $this->FormEnctype);
        
$this->CCSEventResult = CCGetEvent($this->CCSEvents, "BeforeShow");
        if(!
$this->Visible) {
            
$Tpl->block_path = $ParentPath;
            return;
        }

        
$this->Button_Insert->Visible = !$this->EditMode && $this->InsertAllowed;
        
$this->Button_Update->Visible = $this->EditMode && $this->UpdateAllowed;
        
$this->Button_Delete->Visible = $this->EditMode && $this->DeleteAllowed;
        
$this->naslov->Show();
        
$this->tekst->Show();
        
$this->Label1->Show();
        
$this->DatePicker1->Show();
        
$this->ListBox1->Show();
        
$this->rubrika->Show();
        
$this->CheckBox1->Show();
        
$this->CheckBox2->Show();
        
$this->link->Show();
        
$this->Button_Insert->Show();
        
$this->Button_Update->Show();
        
$this->Button_Delete->Show();
        
$Tpl->parse();
        
$Tpl->block_path = $ParentPath;
        
$this->ds->close();
    }
//End Show Method

} //End informacije Class @2-FCB6E20C

class clsinformacijeDataSource extends clsDBConnection1 {  //informacijeDataSource Class @2-A134AC2A

//DataSource Variables @2-2E4DBF2A
    
var $CCSEvents = "";
    var
$CCSEventResult;
    var
$ErrorBlock;

    var
$InsertParameters;
    var
$UpdateParameters;
    var
$DeleteParameters;
    var
$wp;
    var
$AllParametersSet;


    
// Datasource fields
    
var $naslov;
    var
$tekst;
    var
$Label1;
    var
$ListBox1;
    var
$rubrika;
    var
$CheckBox1;
    var
$CheckBox2;
    var
$link;
//End DataSource Variables

//DataSourceClass_Initialize Event @2-74422153
    
function clsinformacijeDataSource()
    {
        
$this->ErrorBlock = "Record informacije/Error";
        
$this->Initialize();
        
$this->naslov = new clsField("naslov", ccsMemo, "");
        
$this->tekst = new clsField("tekst", ccsMemo, "");
        
$this->Label1 = new clsField("Label1", ccsDate, Array("yyyy", "-", "mm", "-", "dd", " ", "HH", ":", "nn", ":", "ss"));
        
$this->ListBox1 = new clsField("ListBox1", ccsText, "");
        
$this->rubrika = new clsField("rubrika", ccsInteger, "");
        
$this->CheckBox1 = new clsField("CheckBox1", ccsInteger, "");
        
$this->CheckBox2 = new clsField("CheckBox2", ccsInteger, "");
        
$this->link = new clsField("link", ccsMemo, "");

    }
//End DataSourceClass_Initialize Event

//Prepare Method @2-78F1C23B
    
function Prepare()
    {
        
$this->wp = new clsSQLParameters($this->ErrorBlock);
        
$this->wp->AddParameter("1", "urlidvijesti", ccsInteger, "", "", $this->Parameters["urlidvijesti"], "", false);
        
$this->AllParametersSet = $this->wp->AllParamsSet();
        
$this->wp->Criterion[1] = $this->wp->Operation(opEqual, "idvijesti", $this->wp->GetDBValue("1"), $this->ToSQL($this->wp->GetDBValue("1"), ccsInteger),false);
        
$this->Where = $this->wp->Criterion[1];
    }
//End Prepare Method

//Open Method @2-9A54920B
    
function Open()
    {
        
$this->CCSEventResult = CCGetEvent($this->CCSEvents, "BeforeBuildSelect");
        
$this->SQL = "SELECT *  " .
        
"FROM informacije";
        
$this->CCSEventResult = CCGetEvent($this->CCSEvents, "BeforeExecuteSelect");
        
$this->query(CCBuildSQL($this->SQL, $this->Where, $this->Order));
        
$this->CCSEventResult = CCGetEvent($this->CCSEvents, "AfterExecuteSelect");
        
$this->MoveToPage($this->AbsolutePage);
    }
//End Open Method

//SetValues Method @2-06AA1EBA
    
function SetValues()
    {
        
$this->naslov->SetDBValue($this->f("naslov"));
        
$this->tekst->SetDBValue($this->f("tekst"));
        
$this->Label1->SetDBValue(trim($this->f("datum")));
        
$this->ListBox1->SetDBValue($this->f("slika"));
        
$this->rubrika->SetDBValue(trim($this->f("rubrika")));
        
$this->CheckBox1->SetDBValue(trim($this->f("wap")));
        
$this->CheckBox2->SetDBValue(trim($this->f("portal")));
        
$this->link->SetDBValue($this->f("link"));
    }
//End SetValues Method

//Insert Method @2-6DDC06BF
    
function Insert()
    {
        
$this->CCSEventResult = CCGetEvent($this->CCSEvents, "BeforeBuildInsert");
        
$this->SQL = "INSERT INTO informacije ("
             
. "naslov, "
             
. "tekst, "
             
. "datum, "
             
. "slika, "
             
. "rubrika, "
             
. "wap, "
             
. "portal, "
             
. "link"
             
. ") VALUES ("
             
. $this->ToSQL($this->naslov->GetDBValue(), $this->naslov->DataType) . ", "
             
. $this->ToSQL($this->tekst->GetDBValue(), $this->tekst->DataType) . ", "
             
. $this->ToSQL($this->Label1->GetDBValue(), $this->Label1->DataType) . ", "
             
. $this->ToSQL($this->ListBox1->GetDBValue(), $this->ListBox1->DataType) . ", "
             
. $this->ToSQL($this->rubrika->GetDBValue(), $this->rubrika->DataType) . ", "
             
. $this->ToSQL($this->CheckBox1->GetDBValue(), $this->CheckBox1->DataType) . ", "
             
. $this->ToSQL($this->CheckBox2->GetDBValue(), $this->CheckBox2->DataType) . ", "
             
. $this->ToSQL($this->link->GetDBValue(), $this->link->DataType)
             .
")";
        
$this->CCSEventResult = CCGetEvent($this->CCSEvents, "BeforeExecuteInsert");
        
$this->query($this->SQL);
        
$this->CCSEventResult = CCGetEvent($this->CCSEvents, "AfterExecuteInsert");
        if(
$this->Errors->Count() > 0)
            
$this->Errors->AddError($this->Errors->ToString());
        
$this->close();
    }
//End Insert Method

//Update Method @2-45F3F604
    
function Update()
    {
        
$this->CCSEventResult = CCGetEvent($this->CCSEvents, "BeforeBuildUpdate");
        
$this->SQL = "UPDATE informacije SET "
             
. "naslov=" . $this->ToSQL($this->naslov->GetDBValue(), $this->naslov->DataType) . ", "
             
. "tekst=" . $this->ToSQL($this->tekst->GetDBValue(), $this->tekst->DataType) . ", "
             
. "datum=" . $this->ToSQL($this->Label1->GetDBValue(), $this->Label1->DataType) . ", "
             
. "slika=" . $this->ToSQL($this->ListBox1->GetDBValue(), $this->ListBox1->DataType) . ", "
             
. "rubrika=" . $this->ToSQL($this->rubrika->GetDBValue(), $this->rubrika->DataType) . ", "
             
. "wap=" . $this->ToSQL($this->CheckBox1->GetDBValue(), $this->CheckBox1->DataType) . ", "
             
. "portal=" . $this->ToSQL($this->CheckBox2->GetDBValue(), $this->CheckBox2->DataType) . ", "
             
. "link=" . $this->ToSQL($this->link->GetDBValue(), $this->link->DataType);
        
$this->SQL = CCBuildSQL($this->SQL, $this->Where, "");
        
$this->CCSEventResult = CCGetEvent($this->CCSEvents, "BeforeExecuteUpdate");
        
$this->query($this->SQL);
        
$this->CCSEventResult = CCGetEvent($this->CCSEvents, "AfterExecuteUpdate");
        if(
$this->Errors->Count() > 0)
            
$this->Errors->AddError($this->Errors->ToString());
        
$this->close();
    }
//End Update Method

//Delete Method @2-B2E0FF04
    
function Delete()
    {
        
$this->CCSEventResult = CCGetEvent($this->CCSEvents, "BeforeBuildDelete");
        
$this->SQL = "DELETE FROM informacije";
        
$this->SQL = CCBuildSQL($this->SQL, $this->Where, "");
        
$this->CCSEventResult = CCGetEvent($this->CCSEvents, "BeforeExecuteDelete");
        
$this->query($this->SQL);
        
$this->CCSEventResult = CCGetEvent($this->CCSEvents, "AfterExecuteDelete");
        if(
$this->Errors->Count() > 0)
            
$this->Errors->AddError($this->Errors->ToString());
        
$this->close();
    }
//End Delete Method

} //End informacijeDataSource Class @2-FCB6E20C

//Include Page implementation @18-5CD56755
include_once("./Footer.php");
//End Include Page implementation

//Initialize Page @1-C5DE3E82
// Variables
$FileName = "";
$Redirect = "";
$Tpl = "";
$TemplateFileName = "";
$BlockToParse = "";
$ComponentName = "";

// Events;
$CCSEvents = "";
$CCSEventResult = "";

$FileName = "informacij_maint2.php";
$Redirect = "";
$TemplateFileName = "informacij_maint2.html";
$BlockToParse = "main";
$PathToRoot = "./";
//End Initialize Page

//Authenticate User @1-DC94A87D
CCSecurityRedirect("1", "");
//End Authenticate User

//Initialize Objects @1-99316089
$DBConnection1 = new clsDBConnection1();

// Controls
$Header = new clsHeader();
$Header->BindEvents();
$Header->TemplatePath = "./";
$Header->Initialize();
$informacije = new clsRecordinformacije();
$Footer = new clsFooter();
$Footer->BindEvents();
$Footer->TemplatePath = "./";
$Footer->Initialize();
$informacije->Initialize();

$CCSEventResult = CCGetEvent($CCSEvents, "AfterInitialize");
//End Initialize Objects

//Initialize HTML Template @1-A0111C9D
$CCSEventResult = CCGetEvent($CCSEvents, "OnInitializeView");
$Tpl = new clsTemplate();
$Tpl->LoadTemplate(TemplatePath . $TemplateFileName, "main");
$CCSEventResult = CCGetEvent($CCSEvents, "BeforeShow");
//End Initialize HTML Template

//Execute Components @1-946F8E8C
$Header->Operations();
$informacije->Operation();
$Footer->Operations();
//End Execute Components

//Go to destination page @1-6F9FD7CC
if($Redirect)
{
    
$CCSEventResult = CCGetEvent($CCSEvents, "BeforeUnload");
    
$DBConnection1->close();
    
header("Location: " . $Redirect);
    exit;
}
//End Go to destination page

//Show Page @1-92D48FA2
$Header->Show("Header");
$informacije->Show();
$Footer->Show("Footer");
$Tpl->PParse("main", false);
//End Show Page

//Unload Page @1-A4D34ABE
$CCSEventResult = CCGetEvent($CCSEvents, "BeforeUnload");
$DBConnection1->close();
unset(
$Tpl);
//End Unload Page


?>

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 1.0 pre-release build #16 powered by Captain Crunch Security Team | http://ccteam.ru | Generation time: 0.005 ]--