/
www
/
wwwroot
/
alo88.autos
/
wp-content
/
plugins
/
wp-content-crawler
/
app
/
Objects
/
Views
/
Upload File
HOME
<?php /** * Created by PhpStorm. * User: tsaricam * Date: 28/06/2023 * Time: 10:53 * * @since 1.14.0 */ namespace WPCCrawler\Objects\Views; use Illuminate\Contracts\View\View; use WPCCrawler\Objects\Enums\ShortCodeName; use WPCCrawler\Objects\OptionsBox\Enums\OptionsBoxTab; use WPCCrawler\Objects\OptionsBox\Enums\TabOptions\TemplatesTabOptions; use WPCCrawler\Objects\OptionsBox\OptionsBoxConfiguration; use WPCCrawler\Objects\Settings\SettingsImpl; use WPCCrawler\Objects\Views\Base\AbstractViewWithLabel; use WPCCrawler\Objects\Views\Enums\ViewVariableName; class MultipleCustomShortCodeWithLabel extends AbstractViewWithLabel { public function getKey(): string { return 'form-items.combined.multiple-custom-short-code-with-label'; } protected function createViewVariableNames(): ?array { return [ ViewVariableName::URL_SELECTOR, ]; } protected function onPrepareView(View $view, SettingsImpl $settings): void { $view ->with('optionsBox', OptionsBoxConfiguration::init() ->addTabOption(OptionsBoxTab::TEMPLATES, TemplatesTabOptions::ALLOWED_REGULAR_SHORT_CODES, [ ShortCodeName::WCC_ITEM, ]) ->addTabOption(OptionsBoxTab::TEMPLATES, TemplatesTabOptions::ALLOW_CUSTOM_SHORT_CODES, false) ->get() ); } }