Setting.php 662 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
<?php namespace Modules\Core\Contracts;

interface Setting
{
    /**
     * Determine if the given configuration value exists.
     *
     * @param string  $key
     * @return bool
     */
    public function has($key);

    /**
     * Get the specified configuration value in the given language
     *
     * @param string $key
     * @param string $locale
     * @param mixed $default
     * @return string
     */
    public function get($key, $locale = null, $default = null);

    /**
     * Set a given configuration value.
     *
     * @param string  $key
     * @param mixed   $value
     * @return void
     */
    public function set($key, $value);
}