# extendify/3.0.4/src/Assist/tasks/help-center.js

Extendify, version 3.0.4. 27 lines.

- Page: https://pluginprobe.com/plugins/extendify/3.0.4/code/src/Assist/tasks/help-center.js
- Raw: https://pluginprobe.com/plugins/extendify/3.0.4/raw/src/Assist/tasks/help-center.js
- Modified: 2026-02-18T22:27:14+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/help-center.js#L10-L20`.

```javascript
import { HelpCenterMarkup } from '@assist/tasks/images/HelpCenterMarkup';
import { __ } from '@wordpress/i18n';

export default {
	slug: 'help-center',
	title: __('Help Center', 'extendify-local'),
	sidebarTitle: __('Learn about the Help Center', 'extendify-local'),
	description: __(
		'Get instant support, explore our Knowledge Base, or take guided tours to make the most of our tools.',
		'extendify-local',
	),
	buttonLabels: {
		completed: __('Revisit', 'extendify-local'),
		notCompleted: __('Explore Help Center', 'extendify-local'),
	},
	type: 'html-text-button',
	event: new CustomEvent('extendify-hc:open'),
	dependencies: { plugins: [] },
	show: () => !window.extSharedData?.showChat,
	htmlBefore: () => (
		<HelpCenterMarkup
			className="border-gray-300 pointer-events-none relative hidden h-full min-h-56 w-full overflow-hidden rounded-t-lg border bg-gray-100 pt-5 lg:block"
			aria-hidden="true"
		/>
	),
};

```
