/home/techb158/public_html/wp-content/plugins/kirki/app/Http/Requests/Page
NameSizeModeActions
GlobalStyleRequest.php9150644editdlrm
PageDataRequest.php24110644editdlrm
PageRequest.php25480644editdlrm
PageSettingsRequest.php12450644editdlrm
PageUpdateRequest.php6010644editdlrm
PopupRequest.php8970644editdlrm
RenameStagingVersionRequest.php5070644editdlrm
StagingVersionRequest.php4210644editdlrm
TogglePageSymbolRequest.php5980644editdlrm
Edit: /home/techb158/public_html/wp-content/plugins/kirki/app/Http/Requests/Page/PageSettingsRequest.php (1245B)
merge([ 'seo_settings' => ensure_array($this->seo_settings), 'custom_code' => ensure_array($this->custom_code), ]); } public function rules() { return [ 'page_title' => 'nullable|string', 'slug' => 'nullable|string', 'page_description' => 'nullable|string', 'post_status' => 'nullable|string', 'featured_image' => 'nullable|url', 'seo_settings' => 'nullable|array', 'custom_code' => 'nullable|array', ]; } public function filters() { return [ 'page_title' => Sanitizer::TEXT, 'slug' => Sanitizer::TEXT, 'page_description' => Sanitizer::TEXT, 'post_status' => Sanitizer::TEXT, 'featured_image' => Sanitizer::URL, 'seo_settings' => Sanitizer::ARRAY, 'custom_code' => Sanitizer::ARRAY, ]; } }