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


Viewing file:     users_list.php (22.52 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 @50-39DC296A
include_once("./Header.php");
//End Include Page implementation

class clsRecordusersSearch { //usersSearch Class @2-C4FF86BD

//Variables @2-5C5E2D83

    // 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 = false;
    var
$UpdateAllowed = false;
    var
$DeleteAllowed = false;
    var
$ReadAllowed   = false;
    var
$ds;
    var
$EditMode;
    var
$ValidatingControls;
    var
$Controls;

    
// Class variables
//End Variables

//Class_Initialize Event @2-3621EE58
    
function clsRecordusersSearch()
    {

        global
$FileName;
        
$this->Visible = true;
        
$this->Errors = new clsErrors();
        
$this->ErrorBlock = "Record usersSearch/Error";
        
$this->ReadAllowed = true;
        if(
$this->Visible)
        {
            
$this->ComponentName = "usersSearch";
            
$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->s_keyword = new clsControl(ccsTextBox, "s_keyword", "s_keyword", ccsText, "", CCGetRequestParam("s_keyword", $Method));
            
$this->Button_DoSearch = new clsButton("Button_DoSearch");
        }
    }
//End Class_Initialize Event

//Validate Method @2-F230E30A
    
function Validate()
    {
        
$Validation = true;
        
$Where = "";
        
$Validation = ($this->s_keyword->Validate() && $Validation);
        
$this->CCSEventResult = CCGetEvent($this->CCSEvents, "OnValidate");
        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-FF2BA97D
    
function Operation()
    {
        if(!
$this->Visible)
            return;

        global
$Redirect;
        global
$FileName;

        
$this->EditMode = false;
        if(!
$this->FormSubmitted)
            return;

        if(
$this->FormSubmitted) {
            
$this->PressedButton = "Button_DoSearch";
            if(
strlen(CCGetParam("Button_DoSearch", ""))) {
                
$this->PressedButton = "Button_DoSearch";
            }
        }
        
$Redirect = "users_list.php";
        if(
$this->Validate()) {
            if(
$this->PressedButton == "Button_DoSearch") {
                if(!
CCGetEvent($this->Button_DoSearch->CCSEvents, "OnClick")) {
                    
$Redirect = "";
                } else {
                    
$Redirect = "users_list.php" . "?" . CCMergeQueryStrings(CCGetQueryString("Form", Array("Button_DoSearch")));
                }
            }
        } else {
            
$Redirect = "";
        }
    }
//End Operation Method

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

        if(!
$this->Visible)
            return;

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


        
$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 .= $this->s_keyword->Errors->ToString();
            
$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");
        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 usersSearch Class @2-FCB6E20C

class clsGridusers { //users class @6-0CB76799

//Variables @6-B56D854F

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

    var
$CCSEvents = "";
    var
$CCSEventResult;

    
// Grid Controls
    
var $StaticControls; var $RowControls;
    var
$Sorter_ID;
    var
$Sorter_user;
    var
$Sorter_superuser;
    var
$Sorter_email;
    var
$Sorter_notify;
    var
$Sorter_active;
    var
$Sorter_manageUsers;
    var
$Sorter_addNews;
    var
$Sorter_manageNews;
    var
$Sorter_manageNewsSpool;
    var
$Sorter_manageTopics;
    var
$Sorter_manageImages;
    var
$Navigator;
//End Variables

//Class_Initialize Event @6-88194CB8
    
function clsGridusers()
    {
        global
$FileName;
        
$this->ComponentName = "users";
        
$this->Visible = True;
        
$this->Errors = new clsErrors();
        
$this->ErrorBlock = "Grid users";
        
$this->ds = new clsusersDataSource();
        
$this->PageSize = CCGetParam($this->ComponentName . "PageSize", "");
        if(!
is_numeric($this->PageSize) || !strlen($this->PageSize))
            
$this->PageSize = 20;
        else if (
$this->PageSize > 100)
            
$this->PageSize = 100;
        else
            
$this->PageSize = intval($this->PageSize);
        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));
        
$this->SorterName = CCGetParam("usersOrder", "");
        
$this->SorterDirection = CCGetParam("usersDir", "");

        
$this->ID = new clsControl(ccsLink, "ID", "ID", ccsInteger, "", CCGetRequestParam("ID", ccsGet));
        
$this->user = new clsControl(ccsLabel, "user", "user", ccsText, "", CCGetRequestParam("user", ccsGet));
        
$this->superuser = new clsControl(ccsLabel, "superuser", "superuser", ccsInteger, "", CCGetRequestParam("superuser", ccsGet));
        
$this->email = new clsControl(ccsLabel, "email", "email", ccsText, "", CCGetRequestParam("email", ccsGet));
        
$this->notify = new clsControl(ccsLabel, "notify", "notify", ccsInteger, "", CCGetRequestParam("notify", ccsGet));
        
$this->active = new clsControl(ccsLabel, "active", "active", ccsInteger, "", CCGetRequestParam("active", ccsGet));
        
$this->manageUsers = new clsControl(ccsLabel, "manageUsers", "manageUsers", ccsInteger, "", CCGetRequestParam("manageUsers", ccsGet));
        
$this->addNews = new clsControl(ccsLabel, "addNews", "addNews", ccsInteger, "", CCGetRequestParam("addNews", ccsGet));
        
$this->manageNews = new clsControl(ccsLabel, "manageNews", "manageNews", ccsInteger, "", CCGetRequestParam("manageNews", ccsGet));
        
$this->manageNewsSpool = new clsControl(ccsLabel, "manageNewsSpool", "manageNewsSpool", ccsInteger, "", CCGetRequestParam("manageNewsSpool", ccsGet));
        
$this->manageTopics = new clsControl(ccsLabel, "manageTopics", "manageTopics", ccsInteger, "", CCGetRequestParam("manageTopics", ccsGet));
        
$this->manageImages = new clsControl(ccsLabel, "manageImages", "manageImages", ccsInteger, "", CCGetRequestParam("manageImages", ccsGet));
        
$this->Sorter_ID = new clsSorter($this->ComponentName, "Sorter_ID", $FileName);
        
$this->Sorter_user = new clsSorter($this->ComponentName, "Sorter_user", $FileName);
        
$this->Sorter_superuser = new clsSorter($this->ComponentName, "Sorter_superuser", $FileName);
        
$this->Sorter_email = new clsSorter($this->ComponentName, "Sorter_email", $FileName);
        
$this->Sorter_notify = new clsSorter($this->ComponentName, "Sorter_notify", $FileName);
        
$this->Sorter_active = new clsSorter($this->ComponentName, "Sorter_active", $FileName);
        
$this->Sorter_manageUsers = new clsSorter($this->ComponentName, "Sorter_manageUsers", $FileName);
        
$this->Sorter_addNews = new clsSorter($this->ComponentName, "Sorter_addNews", $FileName);
        
$this->Sorter_manageNews = new clsSorter($this->ComponentName, "Sorter_manageNews", $FileName);
        
$this->Sorter_manageNewsSpool = new clsSorter($this->ComponentName, "Sorter_manageNewsSpool", $FileName);
        
$this->Sorter_manageTopics = new clsSorter($this->ComponentName, "Sorter_manageTopics", $FileName);
        
$this->Sorter_manageImages = new clsSorter($this->ComponentName, "Sorter_manageImages", $FileName);
        
$this->users_Insert = new clsControl(ccsLink, "users_Insert", "users_Insert", ccsText, "", CCGetRequestParam("users_Insert", ccsGet));
        
$this->users_Insert->Parameters = CCGetQueryString("QueryString", Array("ID", "ccsForm"));
        
$this->users_Insert->Page = "users_maint.php";
        
$this->Navigator = new clsNavigator($this->ComponentName, "Navigator", $FileName, 10, tpSimple);
    }
//End Class_Initialize Event

//Initialize Method @6-03626367
    
function Initialize()
    {
        if(!
$this->Visible) return;

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

//Show Method @6-FC01699C
    
function Show()
    {
        global
$Tpl;
        if(!
$this->Visible) return;

        
$ShownRecords = 0;

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

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


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

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

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


        
$is_next_record = $this->ds->next_record();
        if(
$is_next_record && $ShownRecords < $this->PageSize)
        {
            do {
                    
$this->ds->SetValues();
                
$Tpl->block_path = $ParentPath . "/" . $GridBlock . "/Row";
                
$this->ID->SetValue($this->ds->ID->GetValue());
                
$this->ID->Parameters = CCGetQueryString("QueryString", Array("ccsForm"));
                
$this->ID->Parameters = CCAddParam($this->ID->Parameters, "ID", $this->ds->f("ID"));
                
$this->ID->Page = "users_maint.php";
                
$this->user->SetValue($this->ds->user->GetValue());
                
$this->superuser->SetValue($this->ds->superuser->GetValue());
                
$this->email->SetValue($this->ds->email->GetValue());
                
$this->notify->SetValue($this->ds->notify->GetValue());
                
$this->active->SetValue($this->ds->active->GetValue());
                
$this->manageUsers->SetValue($this->ds->manageUsers->GetValue());
                
$this->addNews->SetValue($this->ds->addNews->GetValue());
                
$this->manageNews->SetValue($this->ds->manageNews->GetValue());
                
$this->manageNewsSpool->SetValue($this->ds->manageNewsSpool->GetValue());
                
$this->manageTopics->SetValue($this->ds->manageTopics->GetValue());
                
$this->manageImages->SetValue($this->ds->manageImages->GetValue());
                
$this->CCSEventResult = CCGetEvent($this->CCSEvents, "BeforeShowRow");
                
$this->ID->Show();
                
$this->user->Show();
                
$this->superuser->Show();
                
$this->email->Show();
                
$this->notify->Show();
                
$this->active->Show();
                
$this->manageUsers->Show();
                
$this->addNews->Show();
                
$this->manageNews->Show();
                
$this->manageNewsSpool->Show();
                
$this->manageTopics->Show();
                
$this->manageImages->Show();
                
$Tpl->block_path = $ParentPath . "/" . $GridBlock;
                
$Tpl->parse("Row", true);
                
$ShownRecords++;
                
$is_next_record = $this->ds->next_record();
            } while (
$is_next_record && $ShownRecords < $this->PageSize);
        }
        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->ds->AbsolutePage;
        
$this->Navigator->TotalPages = $this->ds->PageCount();
        
$this->Sorter_ID->Show();
        
$this->Sorter_user->Show();
        
$this->Sorter_superuser->Show();
        
$this->Sorter_email->Show();
        
$this->Sorter_notify->Show();
        
$this->Sorter_active->Show();
        
$this->Sorter_manageUsers->Show();
        
$this->Sorter_addNews->Show();
        
$this->Sorter_manageNews->Show();
        
$this->Sorter_manageNewsSpool->Show();
        
$this->Sorter_manageTopics->Show();
        
$this->Sorter_manageImages->Show();
        
$this->users_Insert->Show();
        
$this->Navigator->Show();
        
$Tpl->parse();
        
$Tpl->block_path = $ParentPath;
        
$this->ds->close();
    }
//End Show Method

//GetErrors Method @6-925C3729
    
function GetErrors()
    {
        
$errors = "";
        
$errors .= $this->ID->Errors->ToString();
        
$errors .= $this->user->Errors->ToString();
        
$errors .= $this->superuser->Errors->ToString();
        
$errors .= $this->email->Errors->ToString();
        
$errors .= $this->notify->Errors->ToString();
        
$errors .= $this->active->Errors->ToString();
        
$errors .= $this->manageUsers->Errors->ToString();
        
$errors .= $this->addNews->Errors->ToString();
        
$errors .= $this->manageNews->Errors->ToString();
        
$errors .= $this->manageNewsSpool->Errors->ToString();
        
$errors .= $this->manageTopics->Errors->ToString();
        
$errors .= $this->manageImages->Errors->ToString();
        
$errors .= $this->Errors->ToString();
        
$errors .= $this->ds->Errors->ToString();
        return
$errors;
    }
//End GetErrors Method

} //End users Class @6-FCB6E20C

class clsusersDataSource extends clsDBConnection1 {  //usersDataSource Class @6-DF0C03ED

//DataSource Variables @6-99937CEA
    
var $CCSEvents = "";
    var
$CCSEventResult;
    var
$ErrorBlock;
    var
$BlockExecution;

    var
$CountSQL;
    var
$wp;


    
// Datasource fields
    
var $ID;
    var
$user;
    var
$superuser;
    var
$email;
    var
$notify;
    var
$active;
    var
$manageUsers;
    var
$addNews;
    var
$manageNews;
    var
$manageNewsSpool;
    var
$manageTopics;
    var
$manageImages;
//End DataSource Variables

//Class_Initialize Event @6-634EFF4B
    
function clsusersDataSource()
    {
        
$this->ErrorBlock = "Grid users";
        
$this->Initialize();
        
$this->ID = new clsField("ID", ccsInteger, "");
        
$this->user = new clsField("user", ccsText, "");
        
$this->superuser = new clsField("superuser", ccsInteger, "");
        
$this->email = new clsField("email", ccsText, "");
        
$this->notify = new clsField("notify", ccsInteger, "");
        
$this->active = new clsField("active", ccsInteger, "");
        
$this->manageUsers = new clsField("manageUsers", ccsInteger, "");
        
$this->addNews = new clsField("addNews", ccsInteger, "");
        
$this->manageNews = new clsField("manageNews", ccsInteger, "");
        
$this->manageNewsSpool = new clsField("manageNewsSpool", ccsInteger, "");
        
$this->manageTopics = new clsField("manageTopics", ccsInteger, "");
        
$this->manageImages = new clsField("manageImages", ccsInteger, "");

    }
//End Class_Initialize Event

//SetOrder Method @6-1D7EC6F0
    
function SetOrder($SorterName, $SorterDirection)
    {
        
$this->Order = "";
        
$this->Order = CCGetOrder($this->Order, $SorterName, $SorterDirection,
            array(
"Sorter_ID" => array("ID", ""),
            
"Sorter_user" => array("user", ""),
            
"Sorter_superuser" => array("superuser", ""),
            
"Sorter_email" => array("email", ""),
            
"Sorter_notify" => array("notify", ""),
            
"Sorter_active" => array("active", ""),
            
"Sorter_manageUsers" => array("manageUsers", ""),
            
"Sorter_addNews" => array("addNews", ""),
            
"Sorter_manageNews" => array("manageNews", ""),
            
"Sorter_manageNewsSpool" => array("manageNewsSpool", ""),
            
"Sorter_manageTopics" => array("manageTopics", ""),
            
"Sorter_manageImages" => array("manageImages", "")));
    }
//End SetOrder Method

//Prepare Method @6-356CAD9B
    
function Prepare()
    {
        
$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->Criterion[1] = $this->wp->Operation(opContains, "`user`", $this->wp->GetDBValue("1"), $this->ToSQL($this->wp->GetDBValue("1"), ccsText),false);
        
$this->wp->Criterion[2] = $this->wp->Operation(opContains, "email", $this->wp->GetDBValue("2"), $this->ToSQL($this->wp->GetDBValue("2"), ccsText),false);
        
$this->Where = $this->wp->opOR(false, $this->wp->Criterion[1], $this->wp->Criterion[2]);
    }
//End Prepare Method

//Open Method @6-0AC585D8
    
function Open()
    {
        
$this->CCSEventResult = CCGetEvent($this->CCSEvents, "BeforeBuildSelect");
        
$this->CountSQL = "SELECT COUNT(*)  " .
        
"FROM users";
        
$this->SQL = "SELECT ID, `user`, superuser, email, notify, active, manageUsers, addNews, manageNews, manageNewsSpool, manageTopics, manageImages  " .
        
"FROM users";
        
$this->CCSEventResult = CCGetEvent($this->CCSEvents, "BeforeExecuteSelect");
        
$this->RecordsCount = CCGetDBValue(CCBuildSQL($this->CountSQL, $this->Where, ""), $this);
        
$this->query(CCBuildSQL($this->SQL, $this->Where, $this->Order));
        
$this->CCSEventResult = CCGetEvent($this->CCSEvents, "AfterExecuteSelect");
        
$this->MoveToPage($this->AbsolutePage);
    }
//End Open Method

//SetValues Method @6-1FFD77E7
    
function SetValues()
    {
        
$this->ID->SetDBValue(trim($this->f("ID")));
        
$this->user->SetDBValue($this->f("user"));
        
$this->superuser->SetDBValue(trim($this->f("superuser")));
        
$this->email->SetDBValue($this->f("email"));
        
$this->notify->SetDBValue(trim($this->f("notify")));
        
$this->active->SetDBValue(trim($this->f("active")));
        
$this->manageUsers->SetDBValue(trim($this->f("manageUsers")));
        
$this->addNews->SetDBValue(trim($this->f("addNews")));
        
$this->manageNews->SetDBValue(trim($this->f("manageNews")));
        
$this->manageNewsSpool->SetDBValue(trim($this->f("manageNewsSpool")));
        
$this->manageTopics->SetDBValue(trim($this->f("manageTopics")));
        
$this->manageImages->SetDBValue(trim($this->f("manageImages")));
    }
//End SetValues Method

} //End usersDataSource Class @6-FCB6E20C

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

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

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

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

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

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

// Controls
$Header = new clsHeader();
$Header->BindEvents();
$Header->TemplatePath = "./";
$Header->Initialize();
$usersSearch = new clsRecordusersSearch();
$users = new clsGridusers();
$Footer = new clsFooter();
$Footer->BindEvents();
$Footer->TemplatePath = "./";
$Footer->Initialize();
$users->Initialize();

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

if(
$Charset) {
    
header("Content-Type: text/html; charset=" . $Charset);
}
//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-25003A86
$Header->Operations();
$usersSearch->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-D35F5D65
$Header->Show("Header");
$usersSearch->Show();
$users->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.006 ]--