You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
849 B
36 lines
849 B
<?php |
|
|
|
namespace core\repositories; |
|
|
|
use core\entities\Settings; |
|
use RuntimeException; |
|
use yii\db\StaleObjectException; |
|
|
|
class SettingsRepository |
|
{ |
|
public function get($section, $key): Settings |
|
{ |
|
if (!$settings = Settings::find()->andWhere(['section' => $section])->andWhere(['key' => $key])->one()) { |
|
throw new NotFoundException('Setting is not found.'); |
|
} |
|
return $settings; |
|
} |
|
|
|
public function save(Settings $settings): void |
|
{ |
|
if (!$settings->save()) { |
|
throw new RuntimeException('Saving error.'); |
|
} |
|
} |
|
|
|
/** |
|
* @param Settings $settings |
|
* @throws StaleObjectException |
|
*/ |
|
public function remove(Settings $settings): void |
|
{ |
|
if (!$settings->delete()) { |
|
throw new RuntimeException('Removing error.'); |
|
} |
|
} |
|
}
|
|
|