[Vtigercrm-developers] [vtiger-commits] r3851 - /vtigercrm/trunk/modules/Faq/EditView.php
vtiger-commits at vtiger.fosslabs.com
vtiger-commits at vtiger.fosslabs.com
Tue Feb 21 02:30:18 PST 2006
Author: richie
Date: Tue Feb 21 03:30:14 2006
New Revision: 3851
Log:
Added 2 if else block to separate Create New from Edit View.
Modified:
vtigercrm/trunk/modules/Faq/EditView.php
Modified: vtigercrm/trunk/modules/Faq/EditView.php
==============================================================================
--- vtigercrm/trunk/modules/Faq/EditView.php (original)
+++ vtigercrm/trunk/modules/Faq/EditView.php Tue Feb 21 03:30:14 2006
@@ -53,7 +53,13 @@
require_once($theme_path.'layout_utils.php');
$disp_view = getView($focus->mode);
-$smarty->assign("BLOCKS",getBlocks("Faq",$disp_view,$mode,$focus->column_fields));
+if($disp_view == 'edit_view')
+ $smarty->assign("BLOCKS",getBlocks("Faq",$disp_view,$mode,$focus->column_fields));
+else
+{
+ $smarty->assign("BASBLOCKS",getBlocks("Faq",$disp_view,$mode,$focus->column_fields,'BAS'));
+}
+
$smarty->assign("OP_MODE",$disp_view);
$smarty->assign("MODULE","Faq");
@@ -132,5 +138,8 @@
$smarty->assign("VALIDATION_DATA_FIELDDATATYPE",$fldDataType);
$smarty->assign("VALIDATION_DATA_FIELDLABEL",$fieldLabel);
-$smarty->display("salesEditView.tpl");
+if($focus->mode == 'edit')
+ $smarty->display("salesEditView.tpl");
+else
+ $smarty->display("CreateView.tpl");
?>
More information about the vtigercrm-developers
mailing list