<?php
ini_set("display_errors","1");
ini_set("display_startup_errors","1");
set_magic_quotes_runtime(0);
include("include/dbcommon.php");
include("include/chosen_comments_variables.php");
// check if logged in
if(!@$_SESSION["UserID"] || !CheckSecurity(@$_SESSION["_".$strTableName."_OwnerID"],"Add"))
{
$_SESSION["MyURL"]=$_SERVER["SCRIPT_NAME"]."?".$_SERVER["QUERY_STRING"];
header("Location: login.php?message=expired");
return;
}
$filename="";
$status="";
$message="";
$error_happened=false;
$readavalues=false;
$showKeys = array();
$showValues = array();
$showRawValues = array();
$showFields = array();
$showDetailKeys = array();
$IsSaved = false;
$HaveData = true;
$inlineedit = (@$_REQUEST["editType"]=="inline") ? true : false;
$keys=array();
$templatefile = "chosen_comments_add.htm";
//connect database
$conn = db_connect();
// Before Process event
if(function_exists("BeforeProcessAdd"))
BeforeProcessAdd($conn);
include('libs/Smarty.class.php');
$smarty = new Smarty();
// insert new record if we have to
if(@$_POST["a"]=="added")
{
$afilename_values=array();
$avalues=array();
$files_move=array();
// processing date - start
if(!$inlineedit)
{
$value = postvalue("value_date");
$type=postvalue("type_date");
if (in_assoc_array("type_date",$_POST) || in_assoc_array("value_date",$_POST) || in_assoc_array("value_date",$_FILES))
{
$value=prepare_for_db("date",$value,$type);
}
else
$value=false;
if(!($value===false))
{
$avalues["date"]=$value;
}
}
// processibng date - end
// processing time - start
if(!$inlineedit)
{
$value = postvalue("value_time");
$type=postvalue("type_time");
if (in_assoc_array("type_time",$_POST) || in_assoc_array("value_time",$_POST) || in_assoc_array("value_time",$_FILES))
{
$value=prepare_for_db("time",$value,$type);
}
else
$value=false;
if(!($value===false))
{
$avalues["time"]=$value;
}
}
// processibng time - end
// processing rate - start
if(!$inlineedit)
{
$value = postvalue("value_rate");
$type=postvalue("type_rate");
if (in_assoc_array("type_rate",$_POST) || in_assoc_array("value_rate",$_POST) || in_assoc_array("value_rate",$_FILES))
{
$value=prepare_for_db("rate",$value,$type);
}
else
$value=false;
if(!($value===false))
{
$avalues["rate"]=$value;
}
}
// processibng rate - end
// processing comment - start
if(!$inlineedit)
{
$value = postvalue("value_comment");
$type=postvalue("type_comment");
if (in_assoc_array("type_comment",$_POST) || in_assoc_array("value_comment",$_POST) || in_assoc_array("value_comment",$_FILES))
{
$value=prepare_for_db("comment",$value,$type);
}
else
$value=false;
if(!($value===false))
{
$avalues["comment"]=$value;
}
}
// processibng comment - end
// insert ownerid value if exists
$avalues["username"]=prepare_for_db("username",$_SESSION["_".$strTableName."_OwnerID"]);
// insert masterkey value if exists and if not specified
if(@$_SESSION[$strTableName."_mastertable"]=="_blogs")
{
$avalues["blogfirstline"]=prepare_for_db("blogfirstline",$_SESSION[$strTableName."_masterkey1"]);
}
// add filenames to values
foreach($afilename_values as $akey=>$value)
$avalues[$akey]=$value;
// make SQL string
$strSQL = "insert into ".AddTableWrappers($strOriginalTableName)." ";
$strFields="(";
$strValues="(";
// before Add event
$retval = true;
if(function_exists("BeforeAdd"))
$retval=BeforeAdd($avalues,$message,$inlineedit);
if($retval)
{
foreach($avalues as $akey=>$value)
{
$strFields.=AddFieldWrappers($akey).", ";
$strValues.=add_db_quotes($akey,$value).", ";
}
if(substr($strFields,-2)==", ")
$strFields=substr($strFields,0,strlen($strFields)-2);
if(substr($strValues,-2)==", ")
$strValues=substr($strValues,0,strlen($strValues)-2);
$strSQL.=$strFields.") values ".$strValues.")";
LogInfo($strSQL);
set_error_handler("add_error_handler");
db_exec($strSQL,$conn);
set_error_handler("error_handler");
// move files
if(!$error_happened)
{
foreach ($files_move as $file)
{
move_uploaded_file($file[0],$file[1]);
if(strtoupper(substr(PHP_OS,0,3))!="WIN")
@chmod($file[1],0777);
}
$message="<div class=message><<< "."Record was added"." >>></div>";
// after edit event
if(function_exists("AfterAdd"))
AfterAdd($avalues,$keys,$inlineedit);
}
}
else
$readavalues=true;
}
$defvalues=array();
// copy record
if(array_key_exists("copyid1",$_REQUEST) || array_key_exists("editid1",$_REQUEST))
{
$copykeys=array();
if(array_key_exists("copyid1",$_REQUEST))
{
$copykeys["id"]=postvalue("copyid1");
}
else
{
$copykeys["id"]=postvalue("editid1");
}
$strWhere=KeyWhere($copykeys);
$strWhere=whereAdd($strWhere,SecuritySQL("Search"));
$strSQL = gSQLWhere($strWhere);
LogInfo($strSQL);
$rs=db_query($strSQL,$conn);
$defvalues=db_fetch_array($rs);
// clear key fields
$defvalues["id"]="";
//call CopyOnLoad event
if(function_exists("CopyOnLoad"))
CopyOnLoad($defvalues,$strWhere);
}
else if(!count($defvalues))
{
$defvalues["date"]=now();
$defvalues["time"]=now();
$defvalues["rate"]=0;
}
if($readavalues)
{
$defvalues["date"]=@$avalues["date"];
$defvalues["time"]=@$avalues["time"];
$defvalues["rate"]=@$avalues["rate"];
$defvalues["comment"]=@$avalues["comment"];
}
foreach($defvalues as $key=>$value)
$smarty->assign("value_".GoodFieldName($key),$value);
// include files
$includes="";
// validation stuff
$bodyonload="";
$onsubmit="";
$includes.="<script language=\"JavaScript\" src=\"include/validate.js\"></script>\r\n";
$includes.="<script language=\"JavaScript\">\r\n";
$includes.="var TEXT_FIELDS_REQUIRED='".addslashes("The Following fields are Required")."';\r\n";
$includes.="var TEXT_FIELDS_ZIPCODES='".addslashes("The Following fields must be valid Zipcodes")."';\r\n";
$includes.="var TEXT_FIELDS_EMAILS='".addslashes("The Following fields must be valid Emails")."';\r\n";
$includes.="var TEXT_FIELDS_NUMBERS='".addslashes("The Following fields must be Numbers")."';\r\n";
$includes.="var TEXT_FIELDS_CURRENCY='".addslashes("The Following fields must be currency")."';\r\n";
$includes.="var TEXT_FIELDS_PHONE='".addslashes("The Following fields must be Phone Numbers")."';\r\n";
$includes.="var TEXT_FIELDS_PASSWORD1='".addslashes("The Following fields must be valid Passwords")."';\r\n";
$includes.="var TEXT_FIELDS_PASSWORD2='".addslashes("should be at least 4 characters long")."';\r\n";
$includes.="var TEXT_FIELDS_PASSWORD3='".addslashes("Cannot be 'password'")."';\r\n";
$includes.="var TEXT_FIELDS_STATE='".addslashes("The Following fields must be State Names")."';\r\n";
$includes.="var TEXT_FIELDS_SSN='".addslashes("The Following fields must be Social Security Numbers")."';\r\n";
$includes.="var TEXT_FIELDS_DATE='".addslashes("The Following fields must be valid dates")."';\r\n";
$includes.="var TEXT_FIELDS_TIME='".addslashes("The Following fields must be valid time in 24-hours format")."';\r\n";
$includes.="var TEXT_FIELDS_CC='".addslashes("The Following fields must be valid Credit Card Numbers")."';\r\n";
$includes.="var TEXT_FIELDS_SSN='".addslashes("The Following fields must be Social Security Numbers")."';\r\n";
$includes.="</script>\r\n";
$validatetype="";
if($validatetype)
$bodyonload.="define('value_time','".$validatetype."','time');";
$validatetype="";
$validatetype.="IsRequired";
if($validatetype)
$bodyonload.="define('value_rate','".$validatetype."','rate');";
$validatetype="";
$validatetype.="IsRequired";
if($validatetype)
$bodyonload.="define('value_comment','".$validatetype."','comment');";
if($bodyonload)
{
$onsubmit="return validate();";
$bodyonload="onload=\"".$bodyonload."\"";
}
if ($useAJAX) {
$includes.="<script language=\"JavaScript\" src=\"include/jquery.js\"></script>\r\n";
$includes.="<script language=\"JavaScript\" src=\"include/ajaxsuggest.js\"></script>\r\n";
}
$includes.="<script language=\"JavaScript\" src=\"include/jsfunctions.js\"></script>\r\n";
$includes.="<script language=\"JavaScript\">\r\n".
"var locale_dateformat = ".$locale_info["LOCALE_IDATE"].";\r\n".
"var locale_datedelimiter = \"".$locale_info["LOCALE_SDATE"]."\";\r\n".
"var bLoading=false;\r\n".
"var TEXT_PLEASE_SELECT='".addslashes("Please select")."';\r\n";
if ($useAJAX) {
$includes.="var AUTOCOMPLETE_TABLE='chosen_comments_autocomplete.php';\r\n";
$includes.="var SUGGEST_TABLE='chosen_comments_searchsuggest.php';\r\n";
$includes.="var SUGGEST_LOOKUP_TABLE='chosen_comments_lookupsuggest.php';\r\n";
}
$includes.="</script>\r\n";
if ($useAJAX) {
$includes.="<div id=\"search_suggest\"></div>\r\n";
}
include("plugins/fckeditor/fckeditor.php");
$smarty->assign("includes",$includes);
$smarty->assign("bodyonload",$bodyonload);
if(strlen($onsubmit))
$onsubmit="onSubmit=\"".$onsubmit."\"";
$smarty->assign("onsubmit",$onsubmit);
$smarty->assign("message",$message);
$smarty->assign("status",$status);
$readonlyfields=array();
// show readonly fields
$readonlyfields["date"] = htmlspecialchars(GetData($defvalues,"date", "Short Date"));
$readonlyfields["time"] = htmlspecialchars(GetData($defvalues,"time", "Time"));
$linkdata="";
if ($useAJAX)
{
$record_id= postvalue("recordID");
$linkdata = "<script type=\"text/javascript\">\r\n".
"$(document).ready(function(){ \r\n".
$linkdata.
"});</script>";
}
else
{
}
$smarty->assign("linkdata",$linkdata);
if(function_exists("BeforeShowAdd"))
BeforeShowAdd($smarty,$templatefile);
$smarty->display($templatefile);
function add_error_handler($errno, $errstr, $errfile, $errline)
{
global $readavalues, $message, $status, $inlineedit, $error_happened;
$message="<div class=message><<< "."Record was NOT added"." >>><br><br>".$errstr."</div>";
$readavalues=true;
$error_happened=true;
}
?>