blob: 1f1e3f93d64a164175f39109fea650a4a7794a51 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<?php /* Copyright (c) 2024 Freya Murphy */
class Settings_model extends Model {
private $request_model;
function __construct($load) {
parent::__construct($load);
$this->request_model = $this->load->model('request');
}
public function get_data(): ?array {
$data = parent::get_data();
$data['title'] = ucfirst(lang('title'));
return $data;
}
}
|