2020-03-11 20:29:08 +00:00
|
|
|
<?php
|
2020-03-15 21:21:11 +00:00
|
|
|
|
2020-05-11 19:15:08 +01:00
|
|
|
// {{{ License
|
|
|
|
// This file is part of GNU social - https://www.gnu.org/software/social
|
|
|
|
//
|
|
|
|
// GNU social 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
|
|
|
|
// (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.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Affero General Public License
|
|
|
|
// along with GNU social. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
// }}}
|
2020-03-21 20:18:05 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Common utility functions
|
|
|
|
*
|
|
|
|
* @package GNUsocial
|
|
|
|
* @category Util
|
|
|
|
*
|
|
|
|
* @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
|
|
|
|
*/
|
2020-03-11 20:29:08 +00:00
|
|
|
|
|
|
|
namespace App\Util;
|
|
|
|
|
2020-05-13 13:10:24 +01:00
|
|
|
use App\Core\DB;
|
|
|
|
|
2020-03-13 22:31:56 +00:00
|
|
|
abstract class Common
|
2020-03-11 20:29:08 +00:00
|
|
|
{
|
2020-05-10 21:43:15 +01:00
|
|
|
/**
|
|
|
|
* Access sysadmin's configuration preferences for GNU social
|
|
|
|
*
|
|
|
|
* @param string $section
|
|
|
|
* @param string $field
|
2020-05-11 18:39:12 +01:00
|
|
|
*
|
2020-05-10 21:43:15 +01:00
|
|
|
* @return mixed
|
|
|
|
*/
|
2020-05-13 13:10:24 +01:00
|
|
|
public static function config(string $section, string $setting)
|
2020-03-13 22:31:56 +00:00
|
|
|
{
|
2020-05-13 13:10:24 +01:00
|
|
|
return DB::find('\App\Entity\Config', [$section, $setting]);
|
2020-03-13 22:31:56 +00:00
|
|
|
}
|
2020-03-11 20:29:08 +00:00
|
|
|
}
|