proxitok/views/models/SettingsTemplate.php

20 lines
409 B
PHP
Raw Normal View History

<?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;
2022-01-28 14:54:09 +00:00
$this->following = Following::getUsers();
}
}