Viewing file: newsleter_maint.php (19.03 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 @12-3DD2EFDC
include_once(RelativePath . "/Header.php");
//End Include Page implementation
//Include Page implementation @14-9090FF7A
include_once(RelativePath . "/Header1.php");
//End Include Page implementation
class clsRecordnewsleter { //newsleter Class @2-752FC21E
//Variables @2-B2F7A83E
// 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 $EditMode = false;
var $ds;
var $ValidatingControls;
var $Controls;
// Class variables
//End Variables
//Class_Initialize Event @2-1EF1A105
function clsRecordnewsleter()
{
global $FileName;
$this->Visible = true;
$this->Errors = new clsErrors();
$this->ErrorBlock = "Record newsleter/Error";
$this->ds = new clsnewsleterDataSource();
$this->InsertAllowed = true;
$this->UpdateAllowed = true;
$this->DeleteAllowed = true;
$this->ReadAllowed = true;
if($this->Visible)
{
$this->ComponentName = "newsleter";
$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->datum_newsletera = new clsControl(ccsTextBox, "datum_newsletera", "Datum Newsletera", ccsDate, Array("GeneralDate"), CCGetRequestParam("datum_newsletera", $Method));
$this->datum_newsletera->Required = true;
$this->DatePicker_datum_newsletera = new clsDatePicker("DatePicker_datum_newsletera", "newsleter", "datum_newsletera");
$this->naslov_newsletera = new clsControl(ccsTextArea, "naslov_newsletera", "Naslov Newsletera", ccsMemo, "", CCGetRequestParam("naslov_newsletera", $Method));
$this->naslov_newsletera->Required = true;
$this->tekst_newsletera = new clsControl(ccsTextArea, "tekst_newsletera", "Tekst Newsletera", ccsMemo, "", CCGetRequestParam("tekst_newsletera", $Method));
$this->tekst_newsletera->Required = true;
$this->Button_Insert = new clsButton("Button_Insert");
$this->Button_Update = new clsButton("Button_Update");
$this->Button_Delete = new clsButton("Button_Delete");
}
}
//End Class_Initialize Event
//Initialize Method @2-44DDFA0B
function Initialize()
{
if(!$this->Visible)
return;
$this->ds->Parameters["urlid_newsletera"] = CCGetFromGet("id_newsletera", "");
}
//End Initialize Method
//Validate Method @2-D714B124
function Validate()
{
$Validation = true;
$Where = "";
$Validation = ($this->datum_newsletera->Validate() && $Validation);
$Validation = ($this->naslov_newsletera->Validate() && $Validation);
$Validation = ($this->tekst_newsletera->Validate() && $Validation);
$this->CCSEventResult = CCGetEvent($this->CCSEvents, "OnValidate");
$Validation = $Validation && ($this->datum_newsletera->Errors->Count() == 0);
$Validation = $Validation && ($this->naslov_newsletera->Errors->Count() == 0);
$Validation = $Validation && ($this->tekst_newsletera->Errors->Count() == 0);
return (($this->Errors->Count() == 0) && $Validation);
}
//End Validate Method
//CheckErrors Method @2-8DE34C98
function CheckErrors()
{
$errors = false;
$errors = ($errors || $this->datum_newsletera->Errors->Count());
$errors = ($errors || $this->DatePicker_datum_newsletera->Errors->Count());
$errors = ($errors || $this->naslov_newsletera->Errors->Count());
$errors = ($errors || $this->tekst_newsletera->Errors->Count());
$errors = ($errors || $this->Errors->Count());
$errors = ($errors || $this->ds->Errors->Count());
return $errors;
}
//End CheckErrors Method
//Operation Method @2-DDA3803F
function Operation()
{
if(!$this->Visible)
return;
global $Redirect;
global $FileName;
$this->ds->Prepare();
if(!$this->FormSubmitted) {
$this->EditMode = $this->ds->AllParametersSet;
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 = "newsleter_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-5024D62E
function InsertRow()
{
$this->CCSEventResult = CCGetEvent($this->CCSEvents, "BeforeInsert");
if(!$this->InsertAllowed) return false;
$this->ds->datum_newsletera->SetValue($this->datum_newsletera->GetValue());
$this->ds->naslov_newsletera->SetValue($this->naslov_newsletera->GetValue());
$this->ds->tekst_newsletera->SetValue($this->tekst_newsletera->GetValue());
$this->ds->Insert();
$this->CCSEventResult = CCGetEvent($this->CCSEvents, "AfterInsert");
return (!$this->CheckErrors());
}
//End InsertRow Method
//UpdateRow Method @2-CB42A916
function UpdateRow()
{
$this->CCSEventResult = CCGetEvent($this->CCSEvents, "BeforeUpdate");
if(!$this->UpdateAllowed) return false;
$this->ds->datum_newsletera->SetValue($this->datum_newsletera->GetValue());
$this->ds->naslov_newsletera->SetValue($this->naslov_newsletera->GetValue());
$this->ds->tekst_newsletera->SetValue($this->tekst_newsletera->GetValue());
$this->ds->Update();
$this->CCSEventResult = CCGetEvent($this->CCSEvents, "AfterUpdate");
return (!$this->CheckErrors());
}
//End UpdateRow Method
//DeleteRow Method @2-91867A4A
function DeleteRow()
{
$this->CCSEventResult = CCGetEvent($this->CCSEvents, "BeforeDelete");
if(!$this->DeleteAllowed) return false;
$this->ds->Delete();
$this->CCSEventResult = CCGetEvent($this->CCSEvents, "AfterDelete");
return (!$this->CheckErrors());
}
//End DeleteRow Method
//Show Method @2-B9BE7932
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->EditMode)
{
$this->ds->open();
if($this->Errors->Count() == 0)
{
if($this->ds->Errors->Count() > 0)
{
echo "Error in Record newsleter";
}
else if($this->ds->next_record())
{
$this->ds->SetValues();
if(!$this->FormSubmitted)
{
$this->datum_newsletera->SetValue($this->ds->datum_newsletera->GetValue());
$this->naslov_newsletera->SetValue($this->ds->naslov_newsletera->GetValue());
$this->tekst_newsletera->SetValue($this->ds->tekst_newsletera->GetValue());
}
}
else
{
$this->EditMode = false;
}
}
}
if(!$this->FormSubmitted)
{
}
if($this->FormSubmitted || $this->CheckErrors()) {
$Error .= $this->datum_newsletera->Errors->ToString();
$Error .= $this->DatePicker_datum_newsletera->Errors->ToString();
$Error .= $this->naslov_newsletera->Errors->ToString();
$Error .= $this->tekst_newsletera->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->Button_Insert->Visible = !$this->EditMode && $this->InsertAllowed;
$this->Button_Update->Visible = $this->EditMode && $this->UpdateAllowed;
$this->Button_Delete->Visible = $this->EditMode && $this->DeleteAllowed;
$this->CCSEventResult = CCGetEvent($this->CCSEvents, "BeforeShow");
if(!$this->Visible) {
$Tpl->block_path = $ParentPath;
return;
}
$this->datum_newsletera->Show();
$this->DatePicker_datum_newsletera->Show();
$this->naslov_newsletera->Show();
$this->tekst_newsletera->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 newsleter Class @2-FCB6E20C
class clsnewsleterDataSource extends clsDBConnection1 { //newsleterDataSource Class @2-AE27F51B
//DataSource Variables @2-BD55D40A
var $CCSEvents = "";
var $CCSEventResult;
var $ErrorBlock;
var $CmdExecution;
var $InsertParameters;
var $UpdateParameters;
var $DeleteParameters;
var $wp;
var $AllParametersSet;
// Datasource fields
var $datum_newsletera;
var $naslov_newsletera;
var $tekst_newsletera;
//End DataSource Variables
//DataSourceClass_Initialize Event @2-283CBEB4
function clsnewsleterDataSource()
{
$this->ErrorBlock = "Record newsleter/Error";
$this->Initialize();
$this->datum_newsletera = new clsField("datum_newsletera", ccsDate, Array("yyyy", "-", "mm", "-", "dd", " ", "HH", ":", "nn", ":", "ss"));
$this->naslov_newsletera = new clsField("naslov_newsletera", ccsMemo, "");
$this->tekst_newsletera = new clsField("tekst_newsletera", ccsMemo, "");
}
//End DataSourceClass_Initialize Event
//Prepare Method @2-E1387C02
function Prepare()
{
$this->wp = new clsSQLParameters($this->ErrorBlock);
$this->wp->AddParameter("1", "urlid_newsletera", ccsInteger, "", "", $this->Parameters["urlid_newsletera"], "", false);
$this->AllParametersSet = $this->wp->AllParamsSet();
$this->wp->Criterion[1] = $this->wp->Operation(opEqual, "id_newsletera", $this->wp->GetDBValue("1"), $this->ToSQL($this->wp->GetDBValue("1"), ccsInteger),false);
$this->Where =
$this->wp->Criterion[1];
}
//End Prepare Method
//Open Method @2-0A07B3EC
function Open()
{
$this->CCSEventResult = CCGetEvent($this->CCSEvents, "BeforeBuildSelect");
$this->SQL = "SELECT * " .
"FROM newsleter";
$this->CCSEventResult = CCGetEvent($this->CCSEvents, "BeforeExecuteSelect");
$this->PageSize = 1;
$this->query($this->OptimizeSQL(CCBuildSQL($this->SQL, $this->Where, $this->Order)));
$this->CCSEventResult = CCGetEvent($this->CCSEvents, "AfterExecuteSelect");
}
//End Open Method
//SetValues Method @2-B467B54F
function SetValues()
{
$this->datum_newsletera->SetDBValue(trim($this->f("datum_newsletera")));
$this->naslov_newsletera->SetDBValue($this->f("naslov_newsletera"));
$this->tekst_newsletera->SetDBValue($this->f("tekst_newsletera"));
}
//End SetValues Method
//Insert Method @2-29F5FB2A
function Insert()
{
$this->CmdExecution = true;
$this->CCSEventResult = CCGetEvent($this->CCSEvents, "BeforeBuildInsert");
$this->SQL = "INSERT INTO newsleter ("
. "datum_newsletera, "
. "naslov_newsletera, "
. "tekst_newsletera"
. ") VALUES ("
. $this->ToSQL($this->datum_newsletera->GetDBValue(), $this->datum_newsletera->DataType) . ", "
. $this->ToSQL($this->naslov_newsletera->GetDBValue(), $this->naslov_newsletera->DataType) . ", "
. $this->ToSQL($this->tekst_newsletera->GetDBValue(), $this->tekst_newsletera->DataType)
. ")";
$this->CCSEventResult = CCGetEvent($this->CCSEvents, "BeforeExecuteInsert");
if($this->Errors->Count() == 0 && $this->CmdExecution) {
$this->query($this->SQL);
$this->CCSEventResult = CCGetEvent($this->CCSEvents, "AfterExecuteInsert");
}
$this->close();
}
//End Insert Method
//Update Method @2-114897CE
function Update()
{
$this->CmdExecution = true;
$this->CCSEventResult = CCGetEvent($this->CCSEvents, "BeforeBuildUpdate");
$this->SQL = "UPDATE newsleter SET "
. "datum_newsletera=" . $this->ToSQL($this->datum_newsletera->GetDBValue(), $this->datum_newsletera->DataType) . ", "
. "naslov_newsletera=" . $this->ToSQL($this->naslov_newsletera->GetDBValue(), $this->naslov_newsletera->DataType) . ", "
. "tekst_newsletera=" . $this->ToSQL($this->tekst_newsletera->GetDBValue(), $this->tekst_newsletera->DataType);
$this->SQL = CCBuildSQL($this->SQL, $this->Where, "");
$this->CCSEventResult = CCGetEvent($this->CCSEvents, "BeforeExecuteUpdate");
if($this->Errors->Count() == 0 && $this->CmdExecution) {
$this->query($this->SQL);
$this->CCSEventResult = CCGetEvent($this->CCSEvents, "AfterExecuteUpdate");
}
$this->close();
}
//End Update Method
//Delete Method @2-03BCD4C5
function Delete()
{
$this->CmdExecution = true;
$this->CCSEventResult = CCGetEvent($this->CCSEvents, "BeforeBuildDelete");
$this->SQL = "DELETE FROM newsleter";
$this->SQL = CCBuildSQL($this->SQL, $this->Where, "");
$this->CCSEventResult = CCGetEvent($this->CCSEvents, "BeforeExecuteDelete");
if($this->Errors->Count() == 0 && $this->CmdExecution) {
$this->query($this->SQL);
$this->CCSEventResult = CCGetEvent($this->CCSEvents, "AfterExecuteDelete");
}
$this->close();
}
//End Delete Method
} //End newsleterDataSource Class @2-FCB6E20C
//Include Page implementation @13-58DBA1E3
include_once(RelativePath . "/Footer.php");
//End Include Page implementation
//Initialize Page @1-F1F45070
// Variables
$FileName = "";
$Redirect = "";
$Tpl = "";
$TemplateFileName = "";
$BlockToParse = "";
$ComponentName = "";
// Events;
$CCSEvents = "";
$CCSEventResult = "";
$FileName = "newsleter_maint.php";
$Redirect = "";
$TemplateFileName = "newsleter_maint.html";
$BlockToParse = "main";
$TemplateEncoding = "";
$FileEncoding = "";
$PathToRoot = "./";
//End Initialize Page
//Authenticate User @1-DC94A87D
CCSecurityRedirect("1", "");
//End Authenticate User
//Initialize Objects @1-FD850800
$DBConnection1 = new clsDBConnection1();
// Controls
$Header = new clsHeader("");
$Header->BindEvents();
$Header->Initialize();
$Header1 = new clsHeader1("");
$Header1->BindEvents();
$Header1->Initialize();
$newsleter = new clsRecordnewsleter();
$Footer = new clsFooter("");
$Footer->BindEvents();
$Footer->Initialize();
$newsleter->Initialize();
// Events
include("./newsleter_maint_events.php");
BindEvents();
$CCSEventResult = CCGetEvent($CCSEvents, "AfterInitialize");
if ($Charset)
header("Content-Type: text/html; charset=" . $Charset);
//End Initialize Objects
//Initialize HTML Template @1-51DB8464
$CCSEventResult = CCGetEvent($CCSEvents, "OnInitializeView");
$Tpl = new clsTemplate();
$Tpl->LoadTemplate(TemplatePath . $TemplateFileName, "main", $TemplateEncoding);
$CCSEventResult = CCGetEvent($CCSEvents, "BeforeShow");
//End Initialize HTML Template
//Execute Components @1-EDADE97D
$Header->Operations();
$Header1->Operations();
$newsleter->Operation();
$Footer->Operations();
//End Execute Components
//Go to destination page @1-E2E17FD4
if($Redirect)
{
$CCSEventResult = CCGetEvent($CCSEvents, "BeforeUnload");
$DBConnection1->close();
header("Location: " . $Redirect);
$Header->Class_Terminate();
unset($Header);
$Header1->Class_Terminate();
unset($Header1);
unset($newsleter);
$Footer->Class_Terminate();
unset($Footer);
unset($Tpl);
exit;
}
//End Go to destination page
//Show Page @1-FEA62E52
$Header->Show("Header");
$Header1->Show("Header1");
$newsleter->Show();
$Footer->Show("Footer");
$Tpl->PParse("main", false);
//End Show Page
//Unload Page @1-980E6B3F
$CCSEventResult = CCGetEvent($CCSEvents, "BeforeUnload");
$DBConnection1->close();
$Header->Class_Terminate();
unset($Header);
$Header1->Class_Terminate();
unset($Header1);
unset($newsleter);
$Footer->Class_Terminate();
unset($Footer);
unset($Tpl);
//End Unload Page
?>
|