vtigerossez/modules/Users/CreateProfile.php

68 lines
2.5 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('include/utils/utils.php');
global $mod_strings;
$profilename=vtlib_purify($_REQUEST['profile_name']);
if(isset($_REQUEST['dup_check']) && $_REQUEST['dup_check']!='')
{
$query = 'select profilename from vtiger_profile where profilename=?';
$result = $adb->pquery($query, array($profilename));
if($adb->num_rows($result) > 0)
{
echo $mod_strings['LBL_PROFILENAME_EXIST'];
die;
}else
{
echo 'SUCCESS';
die;
}
}
global $theme;
$theme_path="themes/".$theme."/";
$image_path=$theme_path."images/";
$smarty = new vtigerCRM_Smarty;
if(isset($_REQUEST['parent_profile']) && $_REQUEST['parent_profile'] != '')
$smarty->assign("PARENT_PROFILE",vtlib_purify($_REQUEST['parent_profile']));
if(isset($_REQUEST['radio_button']) && $_REQUEST['radio_button'] != '')
$smarty->assign("RADIO_BUTTON",vtlib_purify($_REQUEST['radio_button']));
if(isset($_REQUEST['profile_name']) && $_REQUEST['profile_name'] != '')
$smarty->assign("PROFILE_NAME",vtlib_purify($_REQUEST['profile_name']));
if(isset($_REQUEST['profile_description']) && $_REQUEST['profile_description'] != '')
$smarty->assign("PROFILE_DESCRIPTION",vtlib_purify($_REQUEST['profile_description']));
if(isset($_REQUEST['mode']) && $_REQUEST['mode'] != '')
$smarty->assign("MODE",vtlib_purify($_REQUEST['mode']));
$smarty->assign("MOD", return_module_language($current_language,'Settings'));
$smarty->assign("THEME", $theme);
$smarty->assign("IMAGE_PATH",$image_path);
$smarty->assign("APP", $app_strings);
$smarty->assign("CMOD", $mod_strings);
$sql = "select * from vtiger_profile";
$result = $adb->pquery($sql, array());
$profilelist = array();
$temprow = $adb->fetch_array($result);
do
{
$name=$temprow["profilename"];
$profileid=$temprow["profileid"];
$profilelist[] = array($name,$profileid);
}while($temprow = $adb->fetch_array($result));
$smarty->assign("PROFILE_LISTS", $profilelist);
$smarty->display("CreateProfile.tpl");
?>