2009-08-21 15:22:02 -04:00
|
|
|
<?php
|
2020-03-29 18:33:16 +00:00
|
|
|
|
|
|
|
/* {{{ License
|
|
|
|
* This file is part of GNU social - https://www.gnu.org/software/social
|
2009-08-21 16:14:32 -04:00
|
|
|
*
|
2020-03-29 18:33:16 +00:00
|
|
|
* GNU social is free software: you can redistribute it and/or modify
|
2009-08-21 16:14:32 -04:00
|
|
|
* 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
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
2020-03-29 18:33:16 +00:00
|
|
|
* GNU social is distributed in the hope that it will be useful,
|
2009-08-21 16:14:32 -04:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2020-03-29 18:33:16 +00:00
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
2009-08-21 16:14:32 -04:00
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
2020-03-29 18:33:16 +00:00
|
|
|
* along with GNU social. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
}}} */
|
2009-08-21 16:14:32 -04:00
|
|
|
|
2020-03-29 18:33:16 +00:00
|
|
|
namespace App\Entity;
|
2009-08-21 16:14:32 -04:00
|
|
|
|
2009-08-21 15:22:02 -04:00
|
|
|
/**
|
2020-03-29 18:33:16 +00:00
|
|
|
* Entity for app configuration
|
|
|
|
*
|
|
|
|
* @category DB
|
|
|
|
* @package GNUsocial
|
|
|
|
*
|
|
|
|
* @author Zach Copley <zach@status.net>
|
|
|
|
* @copyright 2010 StatusNet Inc.
|
|
|
|
* @author Mikael Nordfeldth <mmn@hethane.se>
|
|
|
|
* @copyright 2009-2014 Free Software Foundation, Inc http://www.fsf.org
|
|
|
|
* @author Hugo Sales <hugo@fc.up.pt>
|
|
|
|
* @copyright 2020 Free Software Foundation, Inc http://www.fsf.org
|
|
|
|
* @license https://www.gnu.org/licenses/agpl.html GNU AGPL v3 or later
|
2009-08-21 15:22:02 -04:00
|
|
|
*/
|
2020-03-29 18:33:16 +00:00
|
|
|
class Config
|
2009-08-21 15:22:02 -04:00
|
|
|
{
|
2020-03-29 18:33:16 +00:00
|
|
|
// AUTOCODE BEGIN
|
2009-08-21 16:14:32 -04:00
|
|
|
|
2020-03-29 18:33:16 +00:00
|
|
|
// AUTOCODE END
|
2009-08-21 16:14:32 -04:00
|
|
|
|
2020-03-29 18:33:16 +00:00
|
|
|
public static function schemaDef(): array
|
2009-08-21 16:14:32 -04:00
|
|
|
{
|
2020-03-29 18:33:16 +00:00
|
|
|
return [
|
|
|
|
'name' => 'config',
|
|
|
|
'fields' => [
|
|
|
|
'section' => ['type' => 'varchar', 'length' => 32, 'not null' => true, 'default' => '', 'description' => 'configuration section'],
|
|
|
|
'setting' => ['type' => 'varchar', 'length' => 32, 'not null' => true, 'default' => '', 'description' => 'configuration setting'],
|
|
|
|
'value' => ['type' => 'text', 'description' => 'configuration value'],
|
|
|
|
],
|
|
|
|
'primary key' => ['section', 'setting'],
|
|
|
|
];
|
2009-08-21 16:14:32 -04:00
|
|
|
}
|
2020-03-29 18:33:16 +00:00
|
|
|
}
|