58 lines
2.0 KiB
PHP
58 lines
2.0 KiB
PHP
|
|
<?php
|
||
|
|
/**
|
||
|
|
* Copyright (C) 2018 Xibo Signage Ltd
|
||
|
|
*
|
||
|
|
* Xibo - Digital Signage - http://www.xibo.org.uk
|
||
|
|
*
|
||
|
|
* This file is part of Xibo.
|
||
|
|
*
|
||
|
|
* Xibo is free software: you can redistribute it and/or modify
|
||
|
|
* it under the terms of the GNU Affero General Public License as published by
|
||
|
|
* the Free Software Foundation, either version 3 of the License, or
|
||
|
|
* any later version.
|
||
|
|
*
|
||
|
|
* Xibo is distributed in the hope that it will be useful,
|
||
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
|
|
* GNU Affero General Public License for more details.
|
||
|
|
*
|
||
|
|
* You should have received a copy of the GNU Affero General Public License
|
||
|
|
* along with Xibo. If not, see <http://www.gnu.org/licenses/>.
|
||
|
|
*/
|
||
|
|
|
||
|
|
use Phinx\Migration\AbstractMigration;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Class Release1812Migration
|
||
|
|
* applicable changes from 143.json
|
||
|
|
*/
|
||
|
|
class Release1812Migration extends AbstractMigration
|
||
|
|
{
|
||
|
|
/** @inheritdoc */
|
||
|
|
public function change()
|
||
|
|
{
|
||
|
|
// Add a setting allowing users to auto authorise new displays
|
||
|
|
if (!$this->fetchRow('SELECT * FROM `setting` WHERE setting = \'DISPLAY_AUTO_AUTH\'')) {
|
||
|
|
$this->table('setting')->insert([
|
||
|
|
[
|
||
|
|
'setting' => 'DISPLAY_AUTO_AUTH',
|
||
|
|
'value' => 0,
|
||
|
|
'userSee' => 0,
|
||
|
|
'userChange' => 0
|
||
|
|
]
|
||
|
|
])->save();
|
||
|
|
}
|
||
|
|
|
||
|
|
// Rename Dashboard to Icon Dashboard
|
||
|
|
$this->execute('UPDATE `pages` set title = \'Icon Dashboard\', name = \'icondashboard\' WHERE `name` = \'dashboard\'');
|
||
|
|
|
||
|
|
// Change the DataSet View module name
|
||
|
|
$this->execute('UPDATE `module` set Name = \'DataSet View\' WHERE `Module` = \'datasetview\'');
|
||
|
|
|
||
|
|
// Add M4V extension to Video module
|
||
|
|
if (!$this->fetchRow('SELECT * FROM `module` WHERE `module` = \'video\' AND validExtensions LIKE \'%m4v%\'')) {
|
||
|
|
$this->execute('UPDATE `module` SET validExtensions = CONCAT(validextensions, \',m4v\') WHERE `module` = \'video\' LIMIT 1;');
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|