Files
slava.home/main_plugin/pickr/plug.php
2025-11-07 20:53:17 +02:00

13 lines
492 B
PHP
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
/**
* @file plug.php
* @brief Подключает плагин pickr для администраторов и подключает JS с языковыми строками
*/
global $path, $_SESSION, $configAdmins;
if (in_array($_SESSION['username'], $configAdmins, true)) {
echo '<script type="text/javascript" src="/main_plugin/pickr/lang.js.php?lng=' . $lng . '"></script>';
echo '<link rel="stylesheet" type="text/css" href="/main_plugin/pickr/pickr.css">';
}
?>