# extendify/3.0.4/src/Assist/tasks/upload-logo.js

Extendify, version 3.0.4. 27 lines.

- Page: https://pluginprobe.com/plugins/extendify/3.0.4/code/src/Assist/tasks/upload-logo.js
- Raw: https://pluginprobe.com/plugins/extendify/3.0.4/raw/src/Assist/tasks/upload-logo.js
- Modified: 2025-08-27T13:47:28+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/extendify/3.0.4/code/src/Assist/tasks/upload-logo.js#L10-L20`.

```javascript
import { __ } from '@wordpress/i18n';

const { themeSlug } = window.extSharedData;
const { launchCompleted } = window.extAssistData;

export default {
	slug: 'logo',
	title: __('Upload a logo', 'extendify-local'),
	description: __(
		'Ensure your website is on-brand by adding your logo.',
		'extendify-local',
	),
	buttonLabels: {
		completed: __('Replace', 'extendify-local'),
		notCompleted: __('Upload', 'extendify-local'),
	},
	type: 'modal',
	dependencies: { plugins: [] },
	show: () => {
		if (themeSlug === 'extendable') return true;
		if (launchCompleted) return true;
		return false;
	},
	backgroundImage:
		'https://images.extendify-cdn.com/assist-tasks/upload-logo.webp',
};

```
