<?php

/*
 * This file is part of RaspiSMS.
 *
 * (c) Pierre-Lin Bonnemaison <plebwebsas@gmail.com>
 *
 * This source file is subject to the GPL-3.0 license that is bundled
 * with this source code in the file LICENSE.
 */

namespace models;

    class Setting extends StandardModel
    {
        /**
         * Return table name
         * @return string 
         */
        protected function get_table_name() : string { return 'setting'; }


        /**
         * Update a setting for a user by his name
         * @param int $id_user  : user id
         * @param string $name : setting name
         * @param mixed $value : new value of the setting
         * @return int : number of modified settings
         */
        public function update_by_name_for_user(int $id_user, string $name, $value)
        {
            return $this->_update($this->get_table_name(), ['value' => $value], ['id_user' => $id_user, 'name' => $name]);
        }
    }