15 lines
226 B
PHP
15 lines
226 B
PHP
<?php
|
|
|
|
class Settings
|
|
{
|
|
private $folks;
|
|
private $tags;
|
|
private $settings;
|
|
|
|
public function getFolks()
|
|
{
|
|
return $this->folks = json_decode(file_get_contents('config/folks.json'), true);
|
|
//return $this->secret;
|
|
}
|
|
|
|
} |