PHP 8.2.31
Preview: buttons.js Size: 1.42 KB
/home/nshryvcy/radiantskinclinics.org/wp-content/plugins/extendify_old/src/HelpCenter/buttons.js

import { AdminBar } from '@help-center/components/buttons/AdminBar';
import { PostEditor } from '@help-center/components/buttons/PostEditor';
import { render } from '@shared/lib/dom';
import { isOnLaunch } from '@shared/lib/utils';
import { useEffect } from '@wordpress/element';
import { registerPlugin } from '@wordpress/plugins';

// Global toolbar
(() => {
	if (isOnLaunch()) return;
	const id = 'wp-admin-bar-help-center-btn';
	if (document.getElementById(id)) return;
	const helpCenter = Object.assign(document.createElement('li'), {
		className: 'extendify-help-center',
		id,
	});
	document.querySelector('#wp-admin-bar-my-account')?.after(helpCenter);
	render(<AdminBar />, helpCenter);
})();

// In editor
registerPlugin('extendify-help-center-buttons', {
	render: () => <HelpCenterButton />,
});
const HelpCenterButton = () => {
	useEffect(() => {
		if (isOnLaunch()) return;
		const id = 'extendify-gtnbrg-help-center-btn';
		if (document.getElementById(id)) return;

		const helpCenter = Object.assign(document.createElement('span'), {
			className: 'extendify-help-center',
			id,
		});
		setTimeout(() => {
			if (document.getElementById(id)) return;
			const page = '[aria-controls="edit-post:document"]';
			const fse = '[aria-controls="edit-site:template"]';
			document.querySelector(page)?.after(helpCenter);
			document.querySelector(fse)?.after(helpCenter);
			render(<PostEditor />, helpCenter);
		}, 500);
	}, []);
	return null;
};

Directory Contents

Dirs: 6 × Files: 4

Name Size Perms Modified Actions
- drwxr-xr-x 2026-04-28 02:40:01
Edit Download
hooks DIR
- drwxr-xr-x 2026-04-28 02:40:01
Edit Download
lib DIR
- drwxr-xr-x 2026-04-28 02:40:01
Edit Download
pages DIR
- drwxr-xr-x 2026-04-28 02:40:01
Edit Download
state DIR
- drwxr-xr-x 2026-04-28 02:40:01
Edit Download
tours DIR
- drwxr-xr-x 2026-04-28 02:40:01
Edit Download
1.42 KB lrw-r--r-- 2026-02-19 03:27:14
Edit Download
637 B lrw-r--r-- 2026-02-19 03:27:14
Edit Download
671 B lrw-r--r-- 2026-02-19 03:27:14
Edit Download
1.20 KB lrw-r--r-- 2026-02-19 03:27:14
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).