forkbb/app/Models/Config/Model.php
2018-01-06 22:18:36 +07:00

23 lines
444 B
PHP

<?php
namespace ForkBB\Models\Config;
use ForkBB\Models\DataModel;
class Model extends DataModel
{
/**
* Заполняет модель данными из кеша/БД
*
* @return Config
*/
public function init()
{
if ($this->c->Cache->has('config')) {
$this->setAttrs($this->c->Cache->get('config'));
} else {
$this->load();
}
return $this;
}
}