1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- <?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);
- }
- ?>
|