Finish up the source conf directory for the Debian Package install.
This commit is contained in:
@@ -49,8 +49,16 @@
|
||||
//only run the following code if the directory exists
|
||||
if (is_dir($_SESSION['switch']['dialplan']['dir'])) {
|
||||
//write the dialplan/default.xml if it does not exist
|
||||
//set the path
|
||||
if (file_exists('/usr/share/fusionpbx/resources/templates/conf')) {
|
||||
$path = "/usr/share/fusionpbx/resources/templates/conf";
|
||||
}
|
||||
else {
|
||||
$path = $_SERVER["DOCUMENT_ROOT"].PROJECT_PATH;
|
||||
}
|
||||
|
||||
//get the contents of the dialplan/default.xml
|
||||
$file_default_path = $_SERVER["DOCUMENT_ROOT"].PROJECT_PATH.'/resources/templates/conf/dialplan/default.xml';
|
||||
$file_default_path = $path.'/resources/templates/conf/dialplan/default.xml';
|
||||
$file_default_contents = file_get_contents($file_default_path);
|
||||
|
||||
//prepare the file contents and the path
|
||||
|
||||
@@ -25,14 +25,9 @@
|
||||
*/
|
||||
|
||||
//make sure that prefix-a-leg is set to true in the xml_cdr.conf.xml file
|
||||
/*
|
||||
if ($domains_processed == 1) {
|
||||
if (file_exists('/usr/share/fusionpbx/resources/templates/conf')) {
|
||||
$path = "/usr/share/fusionpbx/resources/templates/conf";
|
||||
}
|
||||
else {
|
||||
$path = $_SESSION['switch']['conf']['dir'];
|
||||
}
|
||||
$file_contents = file_get_contents($path."/autoload_configs/xml_cdr.conf.xml");
|
||||
$file_contents = file_get_contents($_SESSION['switch']['conf']['dir']."/autoload_configs/xml_cdr.conf.xml");
|
||||
$file_contents_new = str_replace("param name=\"prefix-a-leg\" value=\"false\"/", "param name=\"prefix-a-leg\" value=\"true\"/", $file_contents);
|
||||
if ($file_contents != $file_contents_new) {
|
||||
$fout = fopen($_SESSION['switch']['conf']['dir']."/autoload_configs/xml_cdr.conf.xml","w");
|
||||
@@ -43,5 +38,5 @@
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
*/
|
||||
?>
|
||||
Reference in New Issue
Block a user