2009-08-21 20:22:02 +01:00
|
|
|
<?php
|
2020-03-29 19:33:16 +01:00
|
|
|
|
2020-03-29 20:56:35 +01:00
|
|
|
// {{{ License
|
|
|
|
// This file is part of GNU social - https://www.gnu.org/software/soci
|
|
|
|
//
|
|
|
|
// GNU social is free software: you can redistribute it and/or modify
|
2020-05-10 21:43:15 +01:00
|
|
|
// it under the terms of the GNU Affero General Public License as published by
|
2020-03-29 20:56:35 +01:00
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// GNU social 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.
|
|
|
|
//
|
2020-05-10 21:43:15 +01:00
|
|
|
// You should have received a copy of the GNU Affero General Public License
|
2020-03-29 20:56:35 +01:00
|
|
|
// along with GNU social. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
// }}}
|
2009-08-21 21:14:32 +01:00
|
|
|
|
2020-03-29 19:33:16 +01:00
|
|
|
namespace App\Entity;
|
2009-08-21 21:14:32 +01:00
|
|
|
|
2009-08-21 20:22:02 +01:00
|
|
|
/**
|
2020-03-29 19:33:16 +01: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 20:22:02 +01:00
|
|
|
*/
|
2020-03-29 19:33:16 +01:00
|
|
|
class Config
|
2009-08-21 20:22:02 +01:00
|
|
|
{
|
2020-03-30 15:00:13 +01:00
|
|
|
// {{{ Autocode
|
2009-08-21 21:14:32 +01:00
|
|
|
|
2020-03-30 16:13:51 +01:00
|
|
|
private string $section;
|
|
|
|
private string $setting;
|
|
|
|
private ?string $value;
|
|
|
|
|
|
|
|
public function setSection(string $section): self
|
|
|
|
{
|
|
|
|
$this->section = $section;
|
|
|
|
return $this;
|
|
|
|
}
|
2020-05-11 18:39:12 +01:00
|
|
|
|
2020-03-30 16:13:51 +01:00
|
|
|
public function getSection(): string
|
|
|
|
{
|
|
|
|
return $this->section;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function setSetting(string $setting): self
|
|
|
|
{
|
|
|
|
$this->setting = $setting;
|
|
|
|
return $this;
|
|
|
|
}
|
2020-05-11 18:39:12 +01:00
|
|
|
|
2020-03-30 16:13:51 +01:00
|
|
|
public function getSetting(): string
|
|
|
|
{
|
|
|
|
return $this->setting;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function setValue(?string $value): self
|
|
|
|
{
|
|
|
|
$this->value = $value;
|
|
|
|
return $this;
|
|
|
|
}
|
2020-05-11 18:39:12 +01:00
|
|
|
|
2020-03-30 16:13:51 +01:00
|
|
|
public function getValue(): ?string
|
|
|
|
{
|
|
|
|
return $this->value;
|
|
|
|
}
|
|
|
|
|
2020-03-30 15:00:13 +01:00
|
|
|
// }}} Autocode
|
2009-08-21 21:14:32 +01:00
|
|
|
|
2020-03-29 19:33:16 +01:00
|
|
|
public static function schemaDef(): array
|
2009-08-21 21:14:32 +01:00
|
|
|
{
|
2020-03-29 19:33:16 +01: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 21:14:32 +01:00
|
|
|
}
|
2020-03-30 17:12:05 +01:00
|
|
|
}
|