PHP 8.2.31
Preview: library.js Size: 1000 B
/home/nshryvcy/radiantskinclinics.org/wp-content/plugins/extendify_old/src/Library/library.js

import { MainButton } from '@library/components/MainButton';
import { Modal } from '@library/components/Modal';
import { render } from '@shared/lib/dom';
import '@library/library.css';
import { whenEditorIsReady } from '@shared/lib/wp';

whenEditorIsReady().then(() => {
	const id = 'extendify-library-btn';
	const className = 'extendify-library';
	const page = '.editor-document-tools';
	// const fse = '.edit-site-header-edit-mode__start';

	if (document.getElementById(id)) return;
	const btnWrap = document.createElement('div');
	const btn = Object.assign(btnWrap, { id, className });
	render(<MainButton />, btn);
	setTimeout(() => {
		document.querySelector(page)?.after(btn);
		// document.querySelector(fse)?.append(btn);
	}, 300);

	const mdl = 'extendify-library-modal';
	if (document.getElementById(mdl)) return;
	const modalWrap = document.createElement('div');
	const modal = Object.assign(modalWrap, { id: mdl, className });
	document.body.append(modal);
	render(<Modal />, modal);
});

Directory Contents

Dirs: 6 × Files: 3

Name Size Perms Modified Actions
api DIR
- drwxr-xr-x 2026-04-28 02:40:02
Edit Download
- drwxr-xr-x 2026-04-28 02:40:02
Edit Download
hooks DIR
- drwxr-xr-x 2026-04-28 02:40:02
Edit Download
icons DIR
- drwxr-xr-x 2026-04-28 02:40:02
Edit Download
state DIR
- drwxr-xr-x 2026-04-28 02:40:02
Edit Download
util DIR
- drwxr-xr-x 2026-04-28 02:40:02
Edit Download
678 B lrw-r--r-- 2026-02-19 03:27:14
Edit Download
1000 B lrw-r--r-- 2026-02-19 03:27:14
Edit Download
59.54 KB lrw-r--r-- 2026-02-19 03:27:14
Edit Download

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