config.php3
来自「FIREFLY 是一个多用户专业帮助桌面系统」· PHP3 代码 · 共 66 行
PHP3
66 行
<?###################################### SUPPORT MODULE CONFIGURATION FILE#####################################//Loads general datasinclude "../../../config.php3";include "$doc_root/modules/support/include/applid.php3";$appli_doc_path = "../../doc/";//lib SQL for support moduleinclude ($doc_root."/modules/support/include/support_sql.inc");include ($doc_root."/modules/support/include/support_displays.inc");//who are you$my_company = "MY_COMPANY_NAME";//HERE ARE YOUR CONTRACTS TYPES$contract_type = array ( "A" => "Contract A", "B" => "Contract B", "C" => "Contract C" );//HOW MUCH NAMED CONTACTS COULD CALL THE CALL CENTER ?$num_contacts = array ( "A" => 2, "B" => 4, "C" => 8 );$id_contact_nomme = 1;while (list($type,$num) = each($num_contacts)) $contractoption[$type][$type] = "SELECTED";$case_priority = array ( 1 => "High", 2 => "Medium", 3 => "Low" );$case_color = array ( 1 => "#CC3333", 2 => "#008833", 3 => "#3333AA" );$status_color = array ( 1 => "#99EEAA", 2 => "#AAAAAA", 3 => "#FFCCAA" );// Don't modify this !$id_refcassts = array ( "open" => 1, "closed" => 2, "pending" => 3 );/* inclusion pour le module support */include ($doc_root."/include/grant.inc");include $doc_root."/modules/support/include/localize.php3";?>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?