proxitok/views/models/SettingsTemplate.php
2022-01-28 15:54:09 +01:00

20 lines
409 B
PHP

<?php
namespace Views\Models;
use \Helpers\Following;
use \Helpers\Settings;
/**
* Exclusive for /settings
*/
class SettingsTemplate extends BaseTemplate {
public array $proxy_elements = [];
public array $following = [];
function __construct() {
parent::__construct('Settings');
$this->proxy_elements = Settings::PROXY;
$this->following = Following::getUsers();
}
}