From 1f919eaef022b4721ecb9f72a0ea703b2ac3e89a Mon Sep 17 00:00:00 2001 From: Evgeny Zinoviev Date: Fri, 5 Feb 2021 00:10:23 +0300 Subject: initial --- insert-api-objects.php | 44 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 insert-api-objects.php (limited to 'insert-api-objects.php') diff --git a/insert-api-objects.php b/insert-api-objects.php new file mode 100644 index 0000000..f2d3823 --- /dev/null +++ b/insert-api-objects.php @@ -0,0 +1,44 @@ +createElement('a'); + $a->setAttribute('href', 'javascript:void(0)'); + $a->setAttribute('onclick', "this.nextSibling.style.display = (this.nextSibling.style.display === 'none' ? 'block' : 'none')"); + $a->appendChild($doc->createTextNode('Показать/скрыть объект API')); + + $div = $doc->createElement('div'); + $div->setAttribute('style', 'display: none; font-size: 11px; font-family: monospace; background-color: #edeef0; padding: 10px; white-space: pre; overflow: auto;'); + $div->appendChild($doc->createTextNode($obj)); + + $node->appendChild($doc->createElement('br')); + $node->appendChild($a); + $node->appendChild($div); + + $is_modified = true; + }, null); +} catch (Exception $e) { + fatalError($e->getMessage()); +} + +if ($is_modified) + file_put_contents($file, iconv('utf-8', 'windows-1251//IGNORE', $doc->outertext)); \ No newline at end of file -- cgit v1.2.3