Browse Source

Create app_defaults.php

FusionPBX 5 years ago
parent
commit
593a242601
1 changed files with 56 additions and 0 deletions
  1. 56 0
      core/software/app_defaults.php

+ 56 - 0
core/software/app_defaults.php

@@ -0,0 +1,56 @@
+<?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 <[email protected]>
+	Portions created by the Initial Developer are Copyright (C) 2008-2019
+	the Initial Developer. All Rights Reserved.
+
+	Contributor(s):
+	Mark J Crane <[email protected]>
+*/
+
+if ($domains_processed == 1) {
+
+	//remove old rows 
+		$sql = "delete from v_software where software_uuid <> '7de057e7-333b-4ebf-9466-315ae7d44efd' ";
+		$database = new database;
+		$database->execute($sql, null);
+
+	//update the software table
+		$sql = "select count(*) from v_software ";
+		$database = new database;
+		$num_rows = $database->select($sql, null, 'column');
+		if ($num_rows == 0) {
+			$array['software'][0]['software_uuid'] = '7de057e7-333b-4ebf-9466-315ae7d44efd';
+			$array['software'][0]['software_name'] = 'FusionPBX';
+			$array['software'][0]['software_url'] = 'https://www.fusionpbx.com';
+			$array['software'][0]['software_version'] = software_version();
+		}
+		else {
+			$array['software'][0]['software_uuid'] = '7de057e7-333b-4ebf-9466-315ae7d44efd';
+			$array['software'][0]['software_version'] = software_version();
+		}
+		$database = new database;
+		$database->app_name = 'software';
+		$database->app_uuid = 'b88c795f-7dea-4fc8-9ab7-edd555242cff';
+		$database->save($array);
+		unset($array);
+
+}
+
+?>