├── CHANGELOG.md ├── LICENSE ├── README.md ├── art └── snippet.png ├── composer.json ├── resources └── views │ ├── options │ ├── checkbox.php │ ├── choices.php │ ├── code-editor.php │ ├── color.php │ ├── media.php │ ├── select-multiple.php │ ├── select.php │ ├── text.php │ ├── textarea.php │ └── wp-editor.php │ ├── section-menu.php │ ├── section.php │ ├── sections.php │ ├── settings-page.php │ └── tab-menu.php └── src ├── EnqueueManager.php ├── Enqueuer.php ├── Error.php ├── Flash.php ├── Option.php ├── Options ├── Checkbox.php ├── Choices.php ├── CodeEditor.php ├── Color.php ├── Image.php ├── Media.php ├── OptionAbstract.php ├── Select.php ├── SelectMultiple.php ├── Text.php ├── Textarea.php ├── Video.php └── WPEditor.php ├── Section.php ├── Tab.php ├── Traits └── HasOptionLevel.php ├── WPSettings.php └── helpers.php /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffreyvr/wp-settings/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffreyvr/wp-settings/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffreyvr/wp-settings/HEAD/README.md -------------------------------------------------------------------------------- /art/snippet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffreyvr/wp-settings/HEAD/art/snippet.png -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffreyvr/wp-settings/HEAD/composer.json -------------------------------------------------------------------------------- /resources/views/options/checkbox.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffreyvr/wp-settings/HEAD/resources/views/options/checkbox.php -------------------------------------------------------------------------------- /resources/views/options/choices.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffreyvr/wp-settings/HEAD/resources/views/options/choices.php -------------------------------------------------------------------------------- /resources/views/options/code-editor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffreyvr/wp-settings/HEAD/resources/views/options/code-editor.php -------------------------------------------------------------------------------- /resources/views/options/color.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffreyvr/wp-settings/HEAD/resources/views/options/color.php -------------------------------------------------------------------------------- /resources/views/options/media.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffreyvr/wp-settings/HEAD/resources/views/options/media.php -------------------------------------------------------------------------------- /resources/views/options/select-multiple.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffreyvr/wp-settings/HEAD/resources/views/options/select-multiple.php -------------------------------------------------------------------------------- /resources/views/options/select.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffreyvr/wp-settings/HEAD/resources/views/options/select.php -------------------------------------------------------------------------------- /resources/views/options/text.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffreyvr/wp-settings/HEAD/resources/views/options/text.php -------------------------------------------------------------------------------- /resources/views/options/textarea.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffreyvr/wp-settings/HEAD/resources/views/options/textarea.php -------------------------------------------------------------------------------- /resources/views/options/wp-editor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffreyvr/wp-settings/HEAD/resources/views/options/wp-editor.php -------------------------------------------------------------------------------- /resources/views/section-menu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffreyvr/wp-settings/HEAD/resources/views/section-menu.php -------------------------------------------------------------------------------- /resources/views/section.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffreyvr/wp-settings/HEAD/resources/views/section.php -------------------------------------------------------------------------------- /resources/views/sections.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffreyvr/wp-settings/HEAD/resources/views/sections.php -------------------------------------------------------------------------------- /resources/views/settings-page.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffreyvr/wp-settings/HEAD/resources/views/settings-page.php -------------------------------------------------------------------------------- /resources/views/tab-menu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffreyvr/wp-settings/HEAD/resources/views/tab-menu.php -------------------------------------------------------------------------------- /src/EnqueueManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffreyvr/wp-settings/HEAD/src/EnqueueManager.php -------------------------------------------------------------------------------- /src/Enqueuer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffreyvr/wp-settings/HEAD/src/Enqueuer.php -------------------------------------------------------------------------------- /src/Error.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffreyvr/wp-settings/HEAD/src/Error.php -------------------------------------------------------------------------------- /src/Flash.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffreyvr/wp-settings/HEAD/src/Flash.php -------------------------------------------------------------------------------- /src/Option.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffreyvr/wp-settings/HEAD/src/Option.php -------------------------------------------------------------------------------- /src/Options/Checkbox.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffreyvr/wp-settings/HEAD/src/Options/Checkbox.php -------------------------------------------------------------------------------- /src/Options/Choices.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffreyvr/wp-settings/HEAD/src/Options/Choices.php -------------------------------------------------------------------------------- /src/Options/CodeEditor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffreyvr/wp-settings/HEAD/src/Options/CodeEditor.php -------------------------------------------------------------------------------- /src/Options/Color.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffreyvr/wp-settings/HEAD/src/Options/Color.php -------------------------------------------------------------------------------- /src/Options/Image.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffreyvr/wp-settings/HEAD/src/Options/Image.php -------------------------------------------------------------------------------- /src/Options/Media.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffreyvr/wp-settings/HEAD/src/Options/Media.php -------------------------------------------------------------------------------- /src/Options/OptionAbstract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffreyvr/wp-settings/HEAD/src/Options/OptionAbstract.php -------------------------------------------------------------------------------- /src/Options/Select.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffreyvr/wp-settings/HEAD/src/Options/Select.php -------------------------------------------------------------------------------- /src/Options/SelectMultiple.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffreyvr/wp-settings/HEAD/src/Options/SelectMultiple.php -------------------------------------------------------------------------------- /src/Options/Text.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffreyvr/wp-settings/HEAD/src/Options/Text.php -------------------------------------------------------------------------------- /src/Options/Textarea.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffreyvr/wp-settings/HEAD/src/Options/Textarea.php -------------------------------------------------------------------------------- /src/Options/Video.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffreyvr/wp-settings/HEAD/src/Options/Video.php -------------------------------------------------------------------------------- /src/Options/WPEditor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffreyvr/wp-settings/HEAD/src/Options/WPEditor.php -------------------------------------------------------------------------------- /src/Section.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffreyvr/wp-settings/HEAD/src/Section.php -------------------------------------------------------------------------------- /src/Tab.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffreyvr/wp-settings/HEAD/src/Tab.php -------------------------------------------------------------------------------- /src/Traits/HasOptionLevel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffreyvr/wp-settings/HEAD/src/Traits/HasOptionLevel.php -------------------------------------------------------------------------------- /src/WPSettings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffreyvr/wp-settings/HEAD/src/WPSettings.php -------------------------------------------------------------------------------- /src/helpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffreyvr/wp-settings/HEAD/src/helpers.php --------------------------------------------------------------------------------