!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/radius/   drwxr-xr-x
Free 3.96 GB of 27.03 GB (14.63%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     radgroupreply_list.php (21.89 KB)      -rwxr-xr-x
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
//Include Common Files @1-178B7472
define("RelativePath", ".");
define("PathToCurrentPage", "/");
define("FileName", "radgroupreply_list.php");
include(
RelativePath . "/Common.php");
include(
RelativePath . "/Template.php");
include(
RelativePath . "/Sorter.php");
include(
RelativePath . "/Navigator.php");
//End Include Common Files

//Include Page implementation @32-3DD2EFDC
include_once(RelativePath . "/Header.php");
//End Include Page implementation

class clsRecordradgroupreplySearch { //radgroupreplySearch Class @2-31306DF8

//Variables @2-F607D3A5

    // Public variables
    
var $ComponentType = "Record";
    var
$ComponentName;
    var
$Parent;
    var
$HTMLFormAction;
    var
$PressedButton;
    var
$Errors;
    var
$ErrorBlock;
    var
$FormSubmitted;
    var
$FormEnctype;
    var
$Visible;
    var
$Recordset;

    var
$CCSEvents = "";
    var
$CCSEventResult;

    var
$RelativePath = "";

    var
$InsertAllowed = false;
    var
$UpdateAllowed = false;
    var
$DeleteAllowed = false;
    var
$ReadAllowed   = false;
    var
$EditMode      = false;
    var
$ds;
    var
$DataSource;
    var
$ValidatingControls;
    var
$Controls;

    
// Class variables
//End Variables

//Class_Initialize Event @2-6DE2A2E8
    
function clsRecordradgroupreplySearch($RelativePath, & $Parent)
    {

        global
$FileName;
        global
$CCSLocales;
        global
$DefaultDateFormat;
        
$this->Visible = true;
        
$this->Parent = & $Parent;
        
$this->RelativePath = $RelativePath;
        
$this->Errors = new clsErrors();
        
$this->ErrorBlock = "Record radgroupreplySearch/Error";
        
$this->ReadAllowed = true;
        if(
$this->Visible)
        {
            
$this->ComponentName = "radgroupreplySearch";
            
$CCSForm = split(":", CCGetFromGet("ccsForm", ""), 2);
            if(
sizeof($CCSForm) == 1)
                
$CCSForm[1] = "";
            list(
$FormName, $FormMethod) = $CCSForm;
            
$this->FormEnctype = "application/x-www-form-urlencoded";
            
$this->FormSubmitted = ($FormName == $this->ComponentName);
            
$Method = $this->FormSubmitted ? ccsPost : ccsGet;
            
$this->s_keyword = & new clsControl(ccsTextBox, "s_keyword", "s_keyword", ccsText, "", CCGetRequestParam("s_keyword", $Method), $this);
            
$this->Button_DoSearch = & new clsButton("Button_DoSearch", $Method, $this);
        }
    }
//End Class_Initialize Event

//Validate Method @2-A144A629
    
function Validate()
    {
        global
$CCSLocales;
        
$Validation = true;
        
$Where = "";
        
$Validation = ($this->s_keyword->Validate() && $Validation);
        
$this->CCSEventResult = CCGetEvent($this->CCSEvents, "OnValidate", $this);
        
$Validation =  $Validation && ($this->s_keyword->Errors->Count() == 0);
        return ((
$this->Errors->Count() == 0) && $Validation);
    }
//End Validate Method

//CheckErrors Method @2-D6729123
    
function CheckErrors()
    {
        
$errors = false;
        
$errors = ($errors || $this->s_keyword->Errors->Count());
        
$errors = ($errors || $this->Errors->Count());
        return
$errors;
    }
//End CheckErrors Method

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

        global
$Redirect;
        global
$FileName;

        if(!
$this->FormSubmitted) {
            return;
        }

        if(
$this->FormSubmitted) {
            
$this->PressedButton = "Button_DoSearch";
            if(
$this->Button_DoSearch->Pressed) {
                
$this->PressedButton = "Button_DoSearch";
            }
        }
        
$Redirect = "radgroupreply_list.php";
        if(
$this->Validate()) {
            if(
$this->PressedButton == "Button_DoSearch") {
                
$Redirect = "radgroupreply_list.php" . "?" . CCMergeQueryStrings(CCGetQueryString("Form", array("Button_DoSearch", "Button_DoSearch_x", "Button_DoSearch_y")));
                if(!
CCGetEvent($this->Button_DoSearch->CCSEvents, "OnClick", $this->Button_DoSearch)) {
                    
$Redirect = "";
                }
            }
        } else {
            
$Redirect = "";
        }
    }
//End Operation Method

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

        if(!
$this->Visible)
            return;

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


        
$RecordBlock = "Record " . $this->ComponentName;
        
$ParentPath = $Tpl->block_path;
        
$Tpl->block_path = $ParentPath . "/" . $RecordBlock;
        
$this->EditMode = $this->EditMode && $this->ReadAllowed;
        if (!
$this->FormSubmitted) {
        }

        if(
$this->FormSubmitted || $this->CheckErrors()) {
            
$Error = "";
            
$Error = ComposeStrings($Error, $this->s_keyword->Errors->ToString());
            
$Error = ComposeStrings($Error, $this->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", $this);
        if(!
$this->Visible) {
            
$Tpl->block_path = $ParentPath;
            return;
        }

        
$this->s_keyword->Show();
        
$this->Button_DoSearch->Show();
        
$Tpl->parse();
        
$Tpl->block_path = $ParentPath;
    }
//End Show Method

} //End radgroupreplySearch Class @2-FCB6E20C

class clsGridradgroupreply { //radgroupreply class @5-3E87CA1B

//Variables @5-0CC3F966

    // Public variables
    
var $ComponentType = "Grid";
    var
$ComponentName;
    var
$Visible;
    var
$Errors;
    var
$ErrorBlock;
    var
$ds;
    var
$DataSource;
    var
$PageSize;
    var
$SorterName = "";
    var
$SorterDirection = "";
    var
$PageNumber;

    var
$CCSEvents = "";
    var
$CCSEventResult;

    var
$RelativePath = "";

    
// Grid Controls
    
var $StaticControls;
    var
$RowControls;
    var
$Sorter_id;
    var
$Sorter_GroupName;
    var
$Sorter_Attribute;
    var
$Sorter_op;
    var
$Sorter_f_Value_1;
    var
$Sorter_prio;
//End Variables

//Class_Initialize Event @5-7A9512FD
    
function clsGridradgroupreply($RelativePath, & $Parent)
    {
        global
$FileName;
        global
$CCSLocales;
        global
$DefaultDateFormat;
        
$this->ComponentName = "radgroupreply";
        
$this->Visible = True;
        
$this->Parent = & $Parent;
        
$this->RelativePath = $RelativePath;
        
$this->Errors = new clsErrors();
        
$this->ErrorBlock = "Grid radgroupreply";
        
$this->DataSource = new clsradgroupreplyDataSource($this);
        
$this->ds = & $this->DataSource;
        
$this->PageSize = CCGetParam($this->ComponentName . "PageSize", "");
        if(!
is_numeric($this->PageSize) || !strlen($this->PageSize))
            
$this->PageSize = 20;
        else
            
$this->PageSize = intval($this->PageSize);
        if (
$this->PageSize > 100)
            
$this->PageSize = 100;
        if(
$this->PageSize == 0)
            
$this->Errors->addError("<p>Form: Grid " . $this->ComponentName . "<br>Error: (CCS06) Invalid page size.</p>");
        
$this->PageNumber = intval(CCGetParam($this->ComponentName . "Page", 1));
        if (
$this->PageNumber <= 0) $this->PageNumber = 1;
        
$this->SorterName = CCGetParam("radgroupreplyOrder", "");
        
$this->SorterDirection = CCGetParam("radgroupreplyDir", "");

        
$this->id = & new clsControl(ccsLink, "id", "id", ccsInteger, "", CCGetRequestParam("id", ccsGet), $this);
        
$this->id->Page = "radgroupreply_maint.php";
        
$this->GroupName = & new clsControl(ccsLabel, "GroupName", "GroupName", ccsText, "", CCGetRequestParam("GroupName", ccsGet), $this);
        
$this->Attribute = & new clsControl(ccsLabel, "Attribute", "Attribute", ccsText, "", CCGetRequestParam("Attribute", ccsGet), $this);
        
$this->op = & new clsControl(ccsLabel, "op", "op", ccsText, "", CCGetRequestParam("op", ccsGet), $this);
        
$this->f_Value_1 = & new clsControl(ccsLabel, "f_Value_1", "f_Value_1", ccsText, "", CCGetRequestParam("f_Value_1", ccsGet), $this);
        
$this->prio = & new clsControl(ccsLabel, "prio", "prio", ccsInteger, "", CCGetRequestParam("prio", ccsGet), $this);
        
$this->Sorter_id = & new clsSorter($this->ComponentName, "Sorter_id", $FileName, $this);
        
$this->Sorter_GroupName = & new clsSorter($this->ComponentName, "Sorter_GroupName", $FileName, $this);
        
$this->Sorter_Attribute = & new clsSorter($this->ComponentName, "Sorter_Attribute", $FileName, $this);
        
$this->Sorter_op = & new clsSorter($this->ComponentName, "Sorter_op", $FileName, $this);
        
$this->Sorter_f_Value_1 = & new clsSorter($this->ComponentName, "Sorter_f_Value_1", $FileName, $this);
        
$this->Sorter_prio = & new clsSorter($this->ComponentName, "Sorter_prio", $FileName, $this);
        
$this->radgroupreply_Insert = & new clsControl(ccsLink, "radgroupreply_Insert", "radgroupreply_Insert", ccsText, "", CCGetRequestParam("radgroupreply_Insert", ccsGet), $this);
        
$this->radgroupreply_Insert->Parameters = CCGetQueryString("QueryString", array("id", "ccsForm"));
        
$this->radgroupreply_Insert->Page = "radgroupreply_maint.php";
        
$this->Navigator = & new clsNavigator($this->ComponentName, "Navigator", $FileName, 10, tpSimple, $this);
    }
//End Class_Initialize Event

//Initialize Method @5-90E704C5
    
function Initialize()
    {
        if(!
$this->Visible) return;

        
$this->DataSource->PageSize = & $this->PageSize;
        
$this->DataSource->AbsolutePage = & $this->PageNumber;
        
$this->DataSource->SetOrder($this->SorterName, $this->SorterDirection);
    }
//End Initialize Method

//Show Method @5-E6EDF375
    
function Show()
    {
        global
$Tpl;
        global
$CCSLocales;
        if(!
$this->Visible) return;

        
$ShownRecords = 0;

        
$this->DataSource->Parameters["urls_keyword"] = CCGetFromGet("s_keyword", "");

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


        
$this->DataSource->Prepare();
        
$this->DataSource->Open();

        
$this->CCSEventResult = CCGetEvent($this->CCSEvents, "BeforeShow", $this);
        if(!
$this->Visible) return;

        
$GridBlock = "Grid " . $this->ComponentName;
        
$ParentPath = $Tpl->block_path;
        
$Tpl->block_path = $ParentPath . "/" . $GridBlock;


        if((
$ShownRecords < $this->PageSize) && $this->DataSource->next_record())
        {
            do {
                
$this->DataSource->SetValues();
                
$Tpl->block_path = $ParentPath . "/" . $GridBlock . "/Row";
                
$this->id->SetValue($this->DataSource->id->GetValue());
                
$this->id->Parameters = CCGetQueryString("QueryString", array("ccsForm"));
                
$this->id->Parameters = CCAddParam($this->id->Parameters, "id", $this->DataSource->f("id"));
                
$this->GroupName->SetValue($this->DataSource->GroupName->GetValue());
                
$this->Attribute->SetValue($this->DataSource->Attribute->GetValue());
                
$this->op->SetValue($this->DataSource->op->GetValue());
                
$this->f_Value_1->SetValue($this->DataSource->f_Value_1->GetValue());
                
$this->prio->SetValue($this->DataSource->prio->GetValue());
                
$this->CCSEventResult = CCGetEvent($this->CCSEvents, "BeforeShowRow", $this);
                
$this->id->Show();
                
$this->GroupName->Show();
                
$this->Attribute->Show();
                
$this->op->Show();
                
$this->f_Value_1->Show();
                
$this->prio->Show();
                
$Tpl->block_path = $ParentPath . "/" . $GridBlock;
                
$Tpl->parse("Row", true);
                
$ShownRecords++;
            } while ((
$ShownRecords < $this->PageSize) && $this->DataSource->next_record());
        }
        else
// Show NoRecords block if no records are found
        
{
            
$Tpl->parse("NoRecords", false);
        }

        
$errors = $this->GetErrors();
        if(
strlen($errors))
        {
            
$Tpl->replaceblock("", $errors);
            
$Tpl->block_path = $ParentPath;
            return;
        }
        
$this->Navigator->PageNumber = $this->DataSource->AbsolutePage;
        if (
$this->DataSource->RecordsCount == "CCS not counted")
            
$this->Navigator->TotalPages = $this->DataSource->AbsolutePage + ($this->DataSource->next_record() ? 1 : 0);
        else
            
$this->Navigator->TotalPages = $this->DataSource->PageCount();
        
$this->Sorter_id->Show();
        
$this->Sorter_GroupName->Show();
        
$this->Sorter_Attribute->Show();
        
$this->Sorter_op->Show();
        
$this->Sorter_f_Value_1->Show();
        
$this->Sorter_prio->Show();
        
$this->radgroupreply_Insert->Show();
        
$this->Navigator->Show();
        
$Tpl->parse();
        
$Tpl->block_path = $ParentPath;
        
$this->DataSource->close();
    }
//End Show Method

//GetErrors Method @5-3801793E
    
function GetErrors()
    {
        
$errors = "";
        
$errors = ComposeStrings($errors, $this->id->Errors->ToString());
        
$errors = ComposeStrings($errors, $this->GroupName->Errors->ToString());
        
$errors = ComposeStrings($errors, $this->Attribute->Errors->ToString());
        
$errors = ComposeStrings($errors, $this->op->Errors->ToString());
        
$errors = ComposeStrings($errors, $this->f_Value_1->Errors->ToString());
        
$errors = ComposeStrings($errors, $this->prio->Errors->ToString());
        
$errors = ComposeStrings($errors, $this->Errors->ToString());
        
$errors = ComposeStrings($errors, $this->DataSource->Errors->ToString());
        return
$errors;
    }
//End GetErrors Method

} //End radgroupreply Class @5-FCB6E20C

class clsradgroupreplyDataSource extends clsDBConnection1 {  //radgroupreplyDataSource Class @5-36F6C2E2

//DataSource Variables @5-A6FA575A
    
var $Parent = "";
    var
$CCSEvents = "";
    var
$CCSEventResult;
    var
$ErrorBlock;
    var
$CmdExecution;

    var
$CountSQL;
    var
$wp;


    
// Datasource fields
    
var $id;
    var
$GroupName;
    var
$Attribute;
    var
$op;
    var
$f_Value_1;
    var
$prio;
//End DataSource Variables

//DataSourceClass_Initialize Event @5-ECB814F0
    
function clsradgroupreplyDataSource(& $Parent)
    {
        
$this->Parent = & $Parent;
        
$this->ErrorBlock = "Grid radgroupreply";
        
$this->Initialize();
        
$this->id = new clsField("id", ccsInteger, "");
        
$this->GroupName = new clsField("GroupName", ccsText, "");
        
$this->Attribute = new clsField("Attribute", ccsText, "");
        
$this->op = new clsField("op", ccsText, "");
        
$this->f_Value_1 = new clsField("f_Value_1", ccsText, "");
        
$this->prio = new clsField("prio", ccsInteger, "");

    }
//End DataSourceClass_Initialize Event

//SetOrder Method @5-21586024
    
function SetOrder($SorterName, $SorterDirection)
    {
        
$this->Order = "";
        
$this->Order = CCGetOrder($this->Order, $SorterName, $SorterDirection,
            array(
"Sorter_id" => array("id", ""),
            
"Sorter_GroupName" => array("GroupName", ""),
            
"Sorter_Attribute" => array("Attribute", ""),
            
"Sorter_op" => array("op", ""),
            
"Sorter_f_Value_1" => array("`Value`", ""),
            
"Sorter_prio" => array("prio", "")));
    }
//End SetOrder Method

//Prepare Method @5-1C692590
    
function Prepare()
    {
        global
$CCSLocales;
        global
$DefaultDateFormat;
        
$this->wp = new clsSQLParameters($this->ErrorBlock);
        
$this->wp->AddParameter("1", "urls_keyword", ccsText, "", "", $this->Parameters["urls_keyword"], "", false);
        
$this->wp->AddParameter("2", "urls_keyword", ccsText, "", "", $this->Parameters["urls_keyword"], "", false);
        
$this->wp->AddParameter("3", "urls_keyword", ccsText, "", "", $this->Parameters["urls_keyword"], "", false);
        
$this->wp->AddParameter("4", "urls_keyword", ccsText, "", "", $this->Parameters["urls_keyword"], "", false);
        
$this->wp->Criterion[1] = $this->wp->Operation(opContains, "GroupName", $this->wp->GetDBValue("1"), $this->ToSQL($this->wp->GetDBValue("1"), ccsText),false);
        
$this->wp->Criterion[2] = $this->wp->Operation(opContains, "Attribute", $this->wp->GetDBValue("2"), $this->ToSQL($this->wp->GetDBValue("2"), ccsText),false);
        
$this->wp->Criterion[3] = $this->wp->Operation(opContains, "op", $this->wp->GetDBValue("3"), $this->ToSQL($this->wp->GetDBValue("3"), ccsText),false);
        
$this->wp->Criterion[4] = $this->wp->Operation(opContains, "`Value`", $this->wp->GetDBValue("4"), $this->ToSQL($this->wp->GetDBValue("4"), ccsText),false);
        
$this->Where = $this->wp->opOR(
             
true, $this->wp->opOR(
             
false, $this->wp->opOR(
             
false,
             
$this->wp->Criterion[1],
             
$this->wp->Criterion[2]),
             
$this->wp->Criterion[3]),
             
$this->wp->Criterion[4]);
    }
//End Prepare Method

//Open Method @5-27D38508
    
function Open()
    {
        
$this->CCSEventResult = CCGetEvent($this->CCSEvents, "BeforeBuildSelect", $this->Parent);
        
$this->CountSQL = "SELECT COUNT(*) " .
        
"FROM radgroupreply";
        
$this->SQL = "SELECT radgroupreply.id, radgroupreply.GroupName, radgroupreply.Attribute, radgroupreply.op, radgroupreply.`Value`, radgroupreply.prio  " .
        
"FROM radgroupreply {SQL_Where} {SQL_OrderBy}";
        
$this->CCSEventResult = CCGetEvent($this->CCSEvents, "BeforeExecuteSelect", $this->Parent);
        if (
$this->CountSQL)
            
$this->RecordsCount = CCGetDBValue(CCBuildSQL($this->CountSQL, $this->Where, ""), $this);
        else
            
$this->RecordsCount = "CCS not counted";
        
$this->query($this->OptimizeSQL(CCBuildSQL($this->SQL, $this->Where, $this->Order)));
        
$this->CCSEventResult = CCGetEvent($this->CCSEvents, "AfterExecuteSelect", $this->Parent);
    }
//End Open Method

//SetValues Method @5-A39852E1
    
function SetValues()
    {
        
$this->id->SetDBValue(trim($this->f("id")));
        
$this->GroupName->SetDBValue($this->f("GroupName"));
        
$this->Attribute->SetDBValue($this->f("Attribute"));
        
$this->op->SetDBValue($this->f("op"));
        
$this->f_Value_1->SetDBValue($this->f("`Value`"));
        
$this->prio->SetDBValue(trim($this->f("prio")));
    }
//End SetValues Method

} //End radgroupreplyDataSource Class @5-FCB6E20C

//Include Page implementation @33-58DBA1E3
include_once(RelativePath . "/Footer.php");
//End Include Page implementation

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

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

$FileName = FileName;
$Redirect = "";
$TemplateFileName = "radgroupreply_list.html";
$BlockToParse = "main";
$TemplateEncoding = "CP1252";
$PathToRoot = "./";
//End Initialize Page

//Initialize Objects @1-C9F75D39
$DBConnection1 = new clsDBConnection1();
$MainPage->Connections["Connection1"] = & $DBConnection1;

// Controls
$Header = & new clsHeader("", "Header", $MainPage);
$Header->Initialize();
$radgroupreplySearch = & new clsRecordradgroupreplySearch("", $MainPage);
$radgroupreply = & new clsGridradgroupreply("", $MainPage);
$Footer = & new clsFooter("", "Footer", $MainPage);
$Footer->Initialize();
$MainPage->Header = & $Header;
$MainPage->radgroupreplySearch = & $radgroupreplySearch;
$MainPage->radgroupreply = & $radgroupreply;
$MainPage->Footer = & $Footer;
$radgroupreply->Initialize();

$CCSEventResult = CCGetEvent($CCSEvents, "AfterInitialize", $MainPage);

$Charset = $Charset ? $Charset : "windows-1252";
if (
$Charset)
    
header("Content-Type: text/html; charset=" . $Charset);
//End Initialize Objects

//Initialize HTML Template @1-8F4531F3
$CCSEventResult = CCGetEvent($CCSEvents, "OnInitializeView", $MainPage);
$Tpl = new clsTemplate($FileEncoding, $TemplateEncoding);
$Tpl->LoadTemplate(PathToCurrentPage . $TemplateFileName, $BlockToParse, "CP1252");
$Tpl->block_path = "/$BlockToParse";
$CCSEventResult = CCGetEvent($CCSEvents, "BeforeShow", $MainPage);
//End Initialize HTML Template

//Execute Components @1-59302B91
$Header->Operations();
$radgroupreplySearch->Operation();
$Footer->Operations();
//End Execute Components

//Go to destination page @1-2B91C98D
if($Redirect)
{
    
$CCSEventResult = CCGetEvent($CCSEvents, "BeforeUnload", $MainPage);
    
$DBConnection1->close();
    
header("Location: " . $Redirect);
    
$Header->Class_Terminate();
    unset(
$Header);
    unset(
$radgroupreplySearch);
    unset(
$radgroupreply);
    
$Footer->Class_Terminate();
    unset(
$Footer);
    unset(
$Tpl);
    exit;
}
//End Go to destination page

//Show Page @1-6A06F1BD
$Header->Show();
$radgroupreplySearch->Show();
$radgroupreply->Show();
$Footer->Show();
$Tpl->block_path = "";
$Tpl->Parse($BlockToParse, false);
$main_block = $Tpl->GetVar($BlockToParse);
$CCSEventResult = CCGetEvent($CCSEvents, "BeforeOutput", $MainPage);
if (
$CCSEventResult) echo $main_block;
//End Show Page

//Unload Page @1-58DF9EA2
$CCSEventResult = CCGetEvent($CCSEvents, "BeforeUnload", $MainPage);
$DBConnection1->close();
$Header->Class_Terminate();
unset(
$Header);
unset(
$radgroupreplySearch);
unset(
$radgroupreply);
$Footer->Class_Terminate();
unset(
$Footer);
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.0059 ]--