Input::get('value'), 'image' => Input::file('value'), ]; } public function getListValueAttribute() { switch($this->type) { case 'image': if(!empty($this->value)) { $value = ''.__('app.settings.view').''; } else { $value = __('app.options.none'); } break; case 'boolean': if((bool)$this->value === true) { $value = __('app.options.yes'); } else { $value = __('app.options.no'); } break; case 'select': if(!empty($this->value) && $this->value !== 'none') { $options = (array)json_decode($this->options); $value = __($options[$this->value]); } else { $value = __('app.options.none'); } break; default: $value = __($this->value); break; } return $value; } public function getEditValueAttribute() { switch($this->type) { case 'image': $value = ''; if(isset($this->value) && !empty($this->value)) { $value .= ''; } $value .= Form::file('value', ['class' => 'form-control']); if(isset($this->value) && !empty($this->value)) { $value .= ''.__('app.settings.reset').''; } break; case 'boolean': $checked = false; if(isset($this->value) && (bool)$this->value === true) $checked = true; $set_checked = ($checked) ? ' checked="checked"' : ''; $value = ' '; break; case 'select': $options = json_decode($this->options); foreach($options as $key => $opt) { $options->$key = __($opt); } $value = Form::select('value', $options, null, ['class' => 'form-control']); break; default: $value = Form::text('value', null, ['class' => 'form-control']); break; } return $value; } public function group() { return $this->belongsTo('App\SettingGroup', 'group_id'); } /** * @param string $key * * @return mixed */ public static function fetch($key) { if (Setting::cached($key)) { return Setting::$cache[$key]; } else { $find = self::where('key', '=', $key)->first(); if (!is_null($find)) { $value = $find->value; Setting::add($key, $value); return $value; } else { return false; } } } /** * @param string $key * @param $value */ public static function add($key, $value) { Setting::$cache[$key] = $value; } /** * @param string $key * * @return bool */ public static function cached($key) { return array_key_exists($key, Setting::$cache); } /** * @return html */ public static function search() { $output = ''; $homepage_search = self::fetch('homepage_search'); $search_provider = self::where('key', '=', 'search_provider')->first(); //die(var_dump($search_provider->value)); // return early if search isn't applicable if((bool)$homepage_search !== true) return $output; if($search_provider->value === 'none') return $output; if(empty($search_provider->value)) return $output; if(is_null($search_provider->value)) return $output; if((bool)$homepage_search && (bool)$search_provider) { $options = (array)json_decode($search_provider->options); $name = $options[$search_provider->value]; if((bool)$search_provider->value) { switch($search_provider->value) { case 'google': $url = 'https://www.google.com/search'; $var = 'q'; break; case 'ddg': $url = 'https://duckduckgo.com/'; $var = 'q'; break; case 'bing': $url = 'https://www.bing.com/search'; $var = 'q'; break; } $output .= '
'; $output .= Form::open(['url' => $url, 'method' => 'get']); $output .= '
'; $output .= Form::text($var, null, ['class' => 'homesearch', 'placeholder' => __($name).' '.__('app.settings.search').'...']); $output .= ''; $output .= '
'; $output .= Form::close(); $output .= '
'; } } return $output; } }