OwlCyberSecurity - MANAGER
Edit File: class-mtekk_adminkit_setting_base.php
<?php /* Copyright 2020-2023 John Havlik (email : john.havlik@mtekk.us) This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ namespace mtekk\adminKit\setting; require_once( __DIR__ . '/../../block_direct_access.php'); //Include setting interface if(!interface_exists('setting')) { require_once( __DIR__ . '/interface-mtekk_adminkit_setting.php'); } abstract class setting_base implements setting,\JsonSerializable { const version = '1.0.0'; protected $name = ''; protected $value = ''; protected $title = ''; protected $allow_empty = false; protected $deprecated = false; public function is_deprecated() { return $this->deprecated; } public function set_deprecated($deprecated) { $this->deprecated = $deprecated; } public function get_value() { return $this->value; } public function set_value($new_value) { $this->value = $new_value; } public function get_title() { return $this->title; } public function get_name() { return $this->name; } public function get_allow_empty() { return $this->allow_empty; } public function set_allow_empty($allow_empty) { $this->allow_empty = $allow_empty; } public function jsonSerialize(): mixed { return $this->value; } /** * Basic updateFromFormInput method * * {@inheritDoc} * @see mtekk\adminKit\setting::maybe_update_from_form_input() */ public function maybe_update_from_form_input($input, $bool_ignore_missing = false) { if(isset($input[$this->get_opt_name()])) { $this->set_value($this->validate($input[$this->get_opt_name()])); } } }