PluginProbe
Extendify / 3.0.6
Extendify v3.0.6
3.2.1 3.2.0 3.1.6 3.1.5 3.1.4 3.1.3 3.1.2 3.1.1 3.1.0 3.0.6 3.0.5 3.0.4 trunk 0.1.0 0.10.0 0.10.1 0.10.2 0.11.0 0.11.1 0.2.0 0.3.0 0.3.1 0.4.0 0.5.0 0.6.0 All 127 releases
extendify / src / Assist / tasks / domain-recommendation.js

domain-recommendation.js in Extendify 3.0.6, at src/Assist/tasks/domain-recommendation.js

25 lines 855 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 import { __ } from '@wordpress/i18n';
2
3 const { themeSlug } = window.extSharedData;
4 const { launchCompleted } = window.extAssistData;
5
6 export default {
7 slug: 'domain-recommendation',
8 title: __('Choose your domain', 'extendify-local'),
9 innerTitle: __('Claim your domain', 'extendify-local'),
10 description: __('Claim the perfect domain for your site.', 'extendify-local'),
11 buttonLabels: {
12 completed: __('Register this domain', 'extendify-local'),
13 notCompleted: __('Register this domain', 'extendify-local'),
14 },
15 type: 'domain-task',
16 dependencies: { plugins: [] },
17 show: ({ showDomainTask }) => {
18 // They need either extendable or launch completed
19 if (themeSlug !== 'extendable' && !launchCompleted) return false;
20 return showDomainTask;
21 },
22 backgroundImage:
23 'https://images.extendify-cdn.com/assist-tasks/domains-recommendations.webp',
24 };
25