vtigerossez/modules/Settings/listemailtemplates.php

69 lines
2.0 KiB
PHP

<?php
/*********************************************************************************
** The contents of this file are subject to the vtiger CRM Public License Version 1.0
* ("License"); You may not use this file except in compliance with the License
* The Original Code is: vtiger CRM Open Source
* The Initial Developer of the Original Code is vtiger.
* Portions created by vtiger are Copyright (C) vtiger.
* All Rights Reserved.
*
********************************************************************************/
require_once('Smarty_setup.php');
require_once('include/database/PearDatabase.php');
global $adb;
global $log;
$log->info("Inside Email Templates List View");
$sql = "select * from vtiger_emailtemplates order by templateid DESC";
$result = $adb->pquery($sql, array());
$temprow = $adb->fetch_array($result);
$edit="Edit ";
$del="Del ";
$bar=" | ";
$cnt=1;
require_once('include/utils/UserInfoUtil.php');
global $app_strings;
global $app_list_strings;
global $mod_strings;
global $theme,$default_charset;
$theme_path="themes/".$theme."/";
$image_path=$theme_path."images/";
$smarty = new vtigerCRM_Smarty;
$smarty->assign("UMOD", $mod_strings);
global $current_language;
$smod_strings = return_module_language($current_language,'Settings');
$smarty->assign("APP", $app_strings);
$smarty->assign("MOD", $smod_strings);
$smarty->assign("MODULE", 'Settings');
$smarty->assign("THEME", $theme);
$smarty->assign("IMAGE_PATH", $image_path);
$smarty->assign("PARENTTAB", getParentTab());
$return_data=array();
if ($temprow != null)
{
do
{
$templatearray=array();
$templatearray['templatename'] = $temprow["templatename"];
$templatearray['templateid'] = $temprow["templateid"];
$templatearray['description'] = $temprow["description"];
$templatearray['foldername'] = $temprow["foldername"];
$return_data[]=$templatearray;
$cnt++;
}while($temprow = $adb->fetch_array($result));
}
$log->info("Exiting Email Templates List View");
$smarty->assign("TEMPLATES",$return_data);
$smarty->display("ListEmailTemplates.tpl");
?>