2012-06-04 16:58:40 +02:00
|
|
|
<?php
|
|
|
|
|
/*
|
|
|
|
|
FusionPBX
|
|
|
|
|
Version: MPL 1.1
|
|
|
|
|
|
|
|
|
|
The contents of this file are subject to the Mozilla Public License Version
|
|
|
|
|
1.1 (the "License"); you may not use this file except in compliance with
|
|
|
|
|
the License. You may obtain a copy of the License at
|
|
|
|
|
http://www.mozilla.org/MPL/
|
|
|
|
|
|
|
|
|
|
Software distributed under the License is distributed on an "AS IS" basis,
|
|
|
|
|
WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
|
|
|
for the specific language governing rights and limitations under the
|
|
|
|
|
License.
|
|
|
|
|
|
|
|
|
|
The Original Code is FusionPBX
|
|
|
|
|
|
|
|
|
|
The Initial Developer of the Original Code is
|
|
|
|
|
Mark J Crane <markjcrane@fusionpbx.com>
|
2016-04-03 01:53:51 +02:00
|
|
|
Portions created by the Initial Developer are Copyright (C) 2008-2016
|
2012-06-04 16:58:40 +02:00
|
|
|
the Initial Developer. All Rights Reserved.
|
|
|
|
|
|
|
|
|
|
Contributor(s):
|
|
|
|
|
Mark J Crane <markjcrane@fusionpbx.com>
|
|
|
|
|
*/
|
|
|
|
|
|
2016-04-03 01:53:51 +02:00
|
|
|
//process one time
|
2012-08-14 23:59:45 +02:00
|
|
|
if ($domains_processed == 1) {
|
2016-04-03 01:53:51 +02:00
|
|
|
|
|
|
|
|
//add missing switch directories in default settings
|
2016-04-03 04:11:51 +02:00
|
|
|
$obj = new switch_settings;
|
2016-04-03 03:37:37 +02:00
|
|
|
$obj->settings();
|
|
|
|
|
unset($obj);
|
2016-04-03 01:53:51 +02:00
|
|
|
|
2016-05-26 20:46:07 +02:00
|
|
|
//add the module object
|
|
|
|
|
$module = new modules;
|
|
|
|
|
$module->db = $db;
|
|
|
|
|
|
|
|
|
|
//add the access control list to the database
|
|
|
|
|
$sql = "select * from v_modules ";
|
|
|
|
|
$sql .= "where module_order is null ";
|
|
|
|
|
$prep_statement = $db->prepare($sql);
|
|
|
|
|
if ($prep_statement) {
|
|
|
|
|
$prep_statement->execute();
|
|
|
|
|
$modules = $prep_statement->fetchAll(PDO::FETCH_ASSOC);
|
|
|
|
|
foreach ($modules as &$row) {
|
|
|
|
|
//get the module details
|
|
|
|
|
$mod = $module->info($row['module_name']);
|
|
|
|
|
//update the module order
|
|
|
|
|
$sql = "update v_modules set ";
|
2016-05-26 20:51:53 +02:00
|
|
|
$sql .= "module_order = '".$mod['module_order']."' ";
|
2016-05-26 20:46:07 +02:00
|
|
|
$sql .= "where module_uuid = '".$row['module_uuid']."' ";
|
|
|
|
|
$db->exec(check_sql($sql));
|
|
|
|
|
unset($sql);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2016-04-03 01:53:51 +02:00
|
|
|
//use the module class to get the list of modules from the db and add any missing modules
|
|
|
|
|
if (isset($_SESSION['switch']['mod']['dir'])) {
|
2016-05-26 19:21:37 +02:00
|
|
|
$module->dir = $_SESSION['switch']['mod']['dir'];
|
|
|
|
|
$module->get_modules();
|
|
|
|
|
$module->synch();
|
|
|
|
|
$module->xml();
|
|
|
|
|
$msg = $module->msg;
|
2016-04-03 01:53:51 +02:00
|
|
|
}
|
2012-08-14 23:59:45 +02:00
|
|
|
}
|
2012-06-04 16:58:40 +02:00
|
|
|
|
|
|
|
|
?>
|